Skip to content

Commit

Permalink
Fix some typos. (#1146)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Feb 21, 2024
1 parent f1a494c commit caae4dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -192,7 +192,7 @@ target_link_libraries(foobar PRIVATE Microsoft.GSL::GSL)

### 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.

```cmake
Expand Down
2 changes: 1 addition & 1 deletion docs/headers.md
Expand Up @@ -804,7 +804,7 @@ void operator=(const 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
```cpp
Expand Down
2 changes: 1 addition & 1 deletion tests/span_compatibility_tests.cpp
Expand Up @@ -519,7 +519,7 @@ TEST(span_compatibility_tests, assertion_tests)

// assertions for span's definition
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),
"gsl::dynamic_extent must be defined as the max value of std::size_t");

Expand Down

0 comments on commit caae4dd

Please sign in to comment.