Skip to content

Commit 76ce2e4

Browse files
authored
Verify spelling fixes pass check-spelling
2 parents 2cef816 + 6872296 commit 76ce2e4

File tree

59 files changed

+166
-166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+166
-166
lines changed

Build_android/openssl/openssl-1.0.2k.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ for Android using either Clang or GCC toolchains.
33

44
An alias for the android-armv7 target, named android-armeabi, is added for
55
compatability with the OpenSSL 1.1.0 configuration target names. Support for
6-
the AArch64 archicture is also added, as well as targets using the Clang
6+
the AArch64 architecture is also added, as well as targets using the Clang
77
compiler.
88

9-
Clang does not recognize some of the ARM assembly nmenonics that are used in
9+
Clang does not recognize some of the ARM assembly mnemonics that are used in
1010
OpenSSL. In particular, the 'adrl' pseudo instruction is not supported. To
1111
further complicate matters, Clang doesn't support immediate fixup values so
1212
the alternative adr/sub sequence used for the Thumb2 code path cannot be

Build_android/openssl/openssl-1.0.2l.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ for Android using either Clang or GCC toolchains.
33

44
An alias for the android-armv7 target, named android-armeabi, is added for
55
compatability with the OpenSSL 1.1.0 configuration target names. Support for
6-
the AArch64 archicture is also added, as well as targets using the Clang
6+
the AArch64 architecture is also added, as well as targets using the Clang
77
compiler.
88

9-
Clang does not recognize some of the ARM assembly nmenonics that are used in
9+
Clang does not recognize some of the ARM assembly mnemonics that are used in
1010
OpenSSL. In particular, the 'adrl' pseudo instruction is not supported. To
1111
further complicate matters, Clang doesn't support immediate fixup values so
1212
the alternative adr/sub sequence used for the Thumb2 code path cannot be

Build_android/openssl/openssl-1.0.2m.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ for Android using either Clang or GCC toolchains.
33

44
An alias for the android-armv7 target, named android-armeabi, is added for
55
compatability with the OpenSSL 1.1.0 configuration target names. Support for
6-
the AArch64 archicture is also added, as well as targets using the Clang
6+
the AArch64 architecture is also added, as well as targets using the Clang
77
compiler.
88

9-
Clang does not recognize some of the ARM assembly nmenonics that are used in
9+
Clang does not recognize some of the ARM assembly mnemonics that are used in
1010
OpenSSL. In particular, the 'adrl' pseudo instruction is not supported. To
1111
further complicate matters, Clang doesn't support immediate fixup values so
1212
the alternative adr/sub sequence used for the Thumb2 code path cannot be

Build_android/openssl/openssl-1.0.2n.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ for Android using either Clang or GCC toolchains.
33

44
An alias for the android-armv7 target, named android-armeabi, is added for
55
compatability with the OpenSSL 1.1.0 configuration target names. Support for
6-
the AArch64 archicture is also added, as well as targets using the Clang
6+
the AArch64 architecture is also added, as well as targets using the Clang
77
compiler.
88

9-
Clang does not recognize some of the ARM assembly nmenonics that are used in
9+
Clang does not recognize some of the ARM assembly mnemonics that are used in
1010
OpenSSL. In particular, the 'adrl' pseudo instruction is not supported. To
1111
further complicate matters, Clang doesn't support immediate fixup values so
1212
the alternative adr/sub sequence used for the Thumb2 code path cannot be

Build_iOS/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Please consult the documentation [here](https://github.com/Microsoft/cpprestsdk/wiki/How-to-build-for-iOS) for iOS compilation.
1+
Please consult the [documentation for iOS compilation](https://github.com/Microsoft/cpprestsdk/wiki/How-to-build-for-iOS).

Release/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ function(configure_pch target precompile_header precomile_source) # optional add
213213
set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/${target}.pch")
214214
set(pch_output_filepath_arg "/Fp${CMAKE_CURRENT_BINARY_DIR}/${target}.pch")
215215
else()
216-
# Don't specify output file so that VS may choose a config spefic location.
216+
# Don't specify output file so that VS may choose a config specific location.
217217
# Otherwise Debug/Release builds will interfere with one another.
218218
endif()
219219

Release/include/cpprest/asyncrt_utils.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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>
387387
template<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

731731
private:

Release/include/cpprest/details/SafeInt3.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ the type has. Enabling this option is not recommended.
207207
*
208208
* One key operator that is missing is an implicit cast to type T. The reason for
209209
* this is that if there is an implicit cast operator, then we end up with
210-
* an ambiguous compile-time precedence. Because of this amiguity, there
210+
* an ambiguous compile-time precedence. Because of this ambiguity, there
211211
* are two methods that are provided:
212212
*
213213
* Casting operators for every native integer type
@@ -3759,7 +3759,7 @@ class DivisionHelper<T, U, DivisionState_SignedUnsigned64>
37593759
else // Corner case
37603760
if (t == IntTraits<T>::minInt && u == (unsigned __int64)IntTraits<T>::minInt)
37613761
{
3762-
// Min int divided by it's own magnitude is -1
3762+
// Min int divided by its own magnitude is -1
37633763
result = -1;
37643764
}
37653765
else
@@ -3796,7 +3796,7 @@ class DivisionHelper<T, U, DivisionState_SignedUnsigned64>
37963796
else // Corner case
37973797
if (t == IntTraits<T>::minInt && u == (unsigned __int64)IntTraits<T>::minInt)
37983798
{
3799-
// Min int divided by it's own magnitude is -1
3799+
// Min int divided by its own magnitude is -1
38003800
result = -1;
38013801
}
38023802
else
@@ -7211,7 +7211,7 @@ class DivisionCornerCaseHelper2<T, U, E, false>
72117211
template<typename T, typename U, typename E>
72127212
SafeInt<T, E> operator/(U lhs, SafeInt<T, E> rhs) SAFEINT_CPP_THROW
72137213
{
7214-
// Corner case - has to be handled seperately
7214+
// Corner case - has to be handled separately
72157215
SafeInt<T, E> result;
72167216
if (DivisionCornerCaseHelper<T, U, E, (int)DivisionMethod<U, T>::method == (int)DivisionState_UnsignedSigned>::
72177217
DivisionCornerCase1(lhs, rhs, result))

Release/include/cpprest/http_headers.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ bool bind_impl(const key_type& text, std::string& ref)
9696
class http_headers
9797
{
9898
public:
99-
/// Function object to perform case insensitive comparison of wstrings.
99+
/// Function object to perform case-insensitive comparison of wstrings.
100100
struct _case_insensitive_cmp
101101
{
102102
bool operator()(const utility::string_t& str1, const utility::string_t& str2) const
@@ -315,7 +315,7 @@ class http_headers
315315
_ASYNCRTIMP void set_date(const utility::datetime& date);
316316

317317
private:
318-
// Headers are stored in a map with case insensitive key.
318+
// Headers are stored in a map with case-insensitive key.
319319
inner_container m_headers;
320320
};
321321
} // namespace http

Release/include/cpprest/http_msg.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ class http_msg_base
438438
/// </returns>
439439
/// <remarks>
440440
/// This routine is like _get_content_length, except that it adds a compression algorithm to
441-
/// the Trasfer-Length header if compression is configured. It throws if a Transfer-Encoding
441+
/// the Transfer-Length header if compression is configured. It throws if a Transfer-Encoding
442442
/// header exists and does not match the one it generated.
443443
/// </remarks>
444444
_ASYNCRTIMP size_t _get_content_length_and_set_compression();

0 commit comments

Comments
 (0)