@@ -138,7 +138,7 @@ This project officially supports:
138
138
This project supports [GitHub Codespace](https://github.com/features/codespaces)
139
139
via [Development Containers](https://containers.dev/),
140
140
which allows rapid development and instant hacking in your browser.
141
- We recommand you using GitHub codespace to explore this project as this
141
+ We recommend you using GitHub codespace to explore this project as this
142
142
requires minimal setup.
143
143
144
144
You can create a codespace for this project by clicking this badge:
@@ -164,7 +164,7 @@ we advice you download CMake directly from [CMake's website](https://cmake.org/d
164
164
or install via the [Kitware apt library](https://apt.kitware.com/).
165
165
166
166
A [supported compiler](#supported-platforms) should be available from your package manager.
167
- Alternatively you could use an install script from official compiler venders .
167
+ Alternatively you could use an install script from official compiler vendors .
168
168
169
169
Here is an example of how to install the latest stable version of clang
170
170
as per [the official LLVM install guide](https://apt.llvm.org/).
@@ -197,7 +197,7 @@ brew install llvm
197
197
198
198
### Configure and Build the project using CMake Preset
199
199
200
- This project recommands using [ CMake Preset] ( https://cmake.org/cmake/help/latest/manual/cmake-presets.7.html )
200
+ This project recommends using [ CMake Preset] ( https://cmake.org/cmake/help/latest/manual/cmake-presets.7.html )
201
201
to configure, build and test the project.
202
202
Appropriate presets for major compilers has been included by default.
203
203
You can use ` cmake --list-presets ` to see all available presets.
@@ -216,7 +216,7 @@ thus it has as much sanitizers turned on as possible.
216
216
> [ !NOTE]
217
217
>
218
218
> The set of sanitizer supports are different across compilers,
219
- > you can checout the exact set compiler arguments by looking at the toolchain
219
+ > you can checkout the exact set compiler arguments by looking at the toolchain
220
220
> files under the [ ` cmake ` ] ( cmake/ ) directory.
221
221
222
222
The ` release ` presets are designed for use in production environments,
@@ -225,7 +225,7 @@ thus it has the highest optimization turned on (e.g. `O3`).
225
225
### Configure and Build the project manually
226
226
227
227
While [ CMake Preset] ( #configure-and-build-the-project-using-cmake-preset ) is
228
- convient ,
228
+ convenient ,
229
229
you might want to pass extra config/ compiler arguments for configuration.
230
230
231
231
To configure, build and test the project with extra arguments,
@@ -287,7 +287,7 @@ Enable building examples. Default: ON. Values: { ON, OFF }.
287
287
## Integrate beman.exemplar into your project
288
288
289
289
To use ` beman.exemplar ` in your C++ project,
290
- you should include relavent headers from ` beman.exemplar ` in your source files.
290
+ you should include relevant headers from ` beman.exemplar ` in your source files.
291
291
292
292
``` c++
293
293
#include < beman/exemplar/identity.hpp>
0 commit comments