From 80cae72ff709e42884550625eb5681fb5411fa1c Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Sat, 1 May 2021 11:20:42 +0200 Subject: [PATCH] fix typos in string_view.hpp --- include/nonstd/string_view.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/nonstd/string_view.hpp b/include/nonstd/string_view.hpp index 535448a..31b1e01 100644 --- a/include/nonstd/string_view.hpp +++ b/include/nonstd/string_view.hpp @@ -319,7 +319,7 @@ using std::operator<<; // Providing char-type specializations for compare() and length() that // use compiler intrinsics can improve compile- and run-time performance. // -// The challenge is in using the right combinations of builtin availablity +// The challenge is in using the right combinations of builtin availability // and its constexpr-ness. // // | compiler | __builtin_memcmp (constexpr) | memcmp (constexpr) | @@ -1106,7 +1106,7 @@ nssv_constexpr bool operator>= ( #if ! nssv_CPP11_OR_GREATER || nssv_BETWEEN( nssv_COMPILER_MSVC_VERSION, 100, 141 ) -// accomodate for older compilers: +// accommodate for older compilers: // ==