simple typo fix in the the doco. getMessage to getMessages

This commit is contained in:
tbenade 2014-01-27 17:33:30 +11:00
Родитель 086826574b
Коммит 6a4c965941
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -161,7 +161,7 @@ queueService.createMessage('taskqueue', 'Hello world!', function(error){
});
```
It is then possible to call the **getMessage** method, process the message and then call **deleteMessage** inside the callback. This two-step process ensures messages don't get lost when they are removed from the queue.
It is then possible to call the **getMessages** method, process the message and then call **deleteMessage** inside the callback. This two-step process ensures messages don't get lost when they are removed from the queue.
```Javascript
var queueService = azure.createQueueService(),