Fix some typos. (#1146)

This commit is contained in:
Bruce Mitchener 2024-02-22 06:06:29 +07:00 committed by GitHub
parent f1a494cfd2
commit caae4dd0f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -192,7 +192,7 @@ target_link_libraries(foobar PRIVATE Microsoft.GSL::GSL)
### FetchContent ### FetchContent
If you are using CMake version 3.11+ you can use the offical [FetchContent module](https://cmake.org/cmake/help/latest/module/FetchContent.html). If you are using CMake version 3.11+ you can use the official [FetchContent module](https://cmake.org/cmake/help/latest/module/FetchContent.html).
This allows you to easily incorporate GSL into your project. This allows you to easily incorporate GSL into your project.
```cmake ```cmake

View File

@ -804,7 +804,7 @@ void operator=(const final_action&) = delete;
void operator=(final_action&&) = delete; void operator=(final_action&&) = delete;
``` ```
Move construction is allowed. Copy construction is deleted. Copy and move assignment are also explicitely deleted. Move construction is allowed. Copy construction is deleted. Copy and move assignment are also explicitly deleted.
#### <a name="H-util-finally" />Non-member functions #### <a name="H-util-finally" />Non-member functions
```cpp ```cpp

View File

@ -519,7 +519,7 @@ TEST(span_compatibility_tests, assertion_tests)
// assertions for span's definition // assertions for span's definition
static_assert(std::is_same<decltype(gsl::dynamic_extent), const std::size_t>::value, static_assert(std::is_same<decltype(gsl::dynamic_extent), const std::size_t>::value,
"gsl::dynamic_extent must be respresented as std::size_t"); "gsl::dynamic_extent must be represented as std::size_t");
static_assert(gsl::dynamic_extent == static_cast<std::size_t>(-1), static_assert(gsl::dynamic_extent == static_cast<std::size_t>(-1),
"gsl::dynamic_extent must be defined as the max value of std::size_t"); "gsl::dynamic_extent must be defined as the max value of std::size_t");