Update ReceiveSample/Program.cs

Fixed comment misspelling
This commit is contained in:
John Taubensee 2016-12-20 15:44:56 -06:00 коммит произвёл GitHub
Родитель 5a8d9711bb
Коммит 381b026034
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -49,7 +49,7 @@ namespace ReceiveSample
// Write the message body to the console
Console.WriteLine($"Received message: {message.GetBody<string>()}");
// Complete the messgage so that it is not received again
// Complete the message so that it is not received again
await message.CompleteAsync();
}
catch (Exception exception)
@ -62,4 +62,4 @@ namespace ReceiveSample
}
}
}
}
}