@@ -381,7 +381,7 @@ inline bool __cdecl is_alnum(Elem ch) CPPREST_NOEXCEPT
381381// / 0x0A == Line Feed
382382// / 0x0B == Vertical Tab
383383// / 0x0C == Form Feed
384- // / 0x0D == Carrage Return
384+ // / 0x0D == Carriage Return
385385// / 0x20 == Space
386386// / </summary>
387387template <class Elem >
@@ -451,23 +451,23 @@ std::unique_ptr<_Type> make_unique(_Arg1&& arg1, _Arg2&& arg2, _Arg3&& arg3, _Ar
451451}
452452
453453// / <summary>
454- // / Cross platform utility function for performing case insensitive string equality comparison.
454+ // / Cross platform utility function for performing case- insensitive string equality comparison.
455455// / </summary>
456456// / <param name="left">First string to compare.</param>
457457// / <param name="right">Second strong to compare.</param>
458458// / <returns>true if the strings are equivalent, false otherwise</returns>
459459_ASYNCRTIMP bool __cdecl str_iequal (const std::string& left, const std::string& right) CPPREST_NOEXCEPT;
460460
461461// / <summary>
462- // / Cross platform utility function for performing case insensitive string equality comparison.
462+ // / Cross platform utility function for performing case- insensitive string equality comparison.
463463// / </summary>
464464// / <param name="left">First string to compare.</param>
465465// / <param name="right">Second strong to compare.</param>
466466// / <returns>true if the strings are equivalent, false otherwise</returns>
467467_ASYNCRTIMP bool __cdecl str_iequal (const std::wstring& left, const std::wstring& right) CPPREST_NOEXCEPT;
468468
469469// / <summary>
470- // / Cross platform utility function for performing case insensitive string less-than comparison.
470+ // / Cross platform utility function for performing case- insensitive string less-than comparison.
471471// / </summary>
472472// / <param name="left">First string to compare.</param>
473473// / <param name="right">Second strong to compare.</param>
@@ -476,7 +476,7 @@ _ASYNCRTIMP bool __cdecl str_iequal(const std::wstring& left, const std::wstring
476476_ASYNCRTIMP bool __cdecl str_iless (const std::string& left, const std::string& right) CPPREST_NOEXCEPT;
477477
478478// / <summary>
479- // / Cross platform utility function for performing case insensitive string less-than comparison.
479+ // / Cross platform utility function for performing case- insensitive string less-than comparison.
480480// / </summary>
481481// / <param name="left">First string to compare.</param>
482482// / <param name="right">Second strong to compare.</param>
@@ -725,7 +725,7 @@ class nonce_generator
725725 // / <summary>
726726 // / Set length of the generated nonce string.
727727 // / </summary>
728- // / <param name="length">Lenght of nonce string.</param>
728+ // / <param name="length">Length of nonce string.</param>
729729 void set_length (int length) { m_length = length; }
730730
731731private:
0 commit comments