Fix typos in the code base (#2206)

Note that only documentation and comments are impacted by this change.
This commit is contained in:
Julien Brianceau
2021-04-07 20:43:50 +02:00
committed by GitHub
parent a5abec9cb5
commit e8cdfdca87
6 changed files with 6 additions and 6 deletions

View File

@@ -48,7 +48,7 @@ TEST_CASE("Table allows pre-computed test inputs and outputs", "[example][genera
* (technically C++17 but does not require -std in GCC/Clang). See
* https://stackoverflow.com/questions/12436586/tuple-vector-and-initializer-list
*
* - In C++17 mode std::tie() and the preceeding variable delcarations can be
* - In C++17 mode std::tie() and the preceding variable delcarations can be
* replaced by structured bindings: auto [test_input, expected] = GENERATE(
* table<std::string, size_t>({ ...
*/