Fix various typos (#3312)

Found via `codespell -q 3 -S ./test/gtest -L "fo,pres,seh,wronly"`
This commit is contained in:
luzpaz
2023-02-21 15:14:41 -08:00
committed by GitHub
parent 76f520835f
commit 3a69529e8b
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ TEST(module_test, macros) {
// but rather visibility of all client-facing overloads, reachability of
// non-exported entities, name lookup and overload resolution within
// template instantitions.
// Excercise all exported entities of the API at least once.
// Exercise all exported entities of the API at least once.
// Instantiate as many code paths as possible.
TEST(module_test, to_string) {
+1 -1
View File
@@ -81,5 +81,5 @@ class date {
int day() const { return day_; }
};
// Returns a locale with the given name if available or classic locale othewise.
// Returns a locale with the given name if available or classic locale otherwise.
std::locale get_locale(const char* name, const char* alt_name = nullptr);