From 48f5e8b6c350f5b761e71e7f80fd33a0511919de Mon Sep 17 00:00:00 2001 From: Daniel Mangum <31777345+hasheddan@users.noreply.github.com> Date: Thu, 22 Apr 2021 10:37:47 -0500 Subject: [PATCH] Fix minor typo in basics.md (#1547) Updates basics.md with typo correction of were --> where. Signed-off-by: hasheddan --- doc/basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/basics.md b/doc/basics.md index e0f45567..2f228591 100644 --- a/doc/basics.md +++ b/doc/basics.md @@ -48,7 +48,7 @@ c++ myproject.cpp simdjson.cpp ``` Note: -- Users on macOS and other platforms were default compilers do not provide C++11 compliant by default should request it with the appropriate flag (e.g., `c++ -std=c++17 myproject.cpp simdjson.cpp`). +- Users on macOS and other platforms where default compilers do not provide C++11 compliant by default should request it with the appropriate flag (e.g., `c++ -std=c++17 myproject.cpp simdjson.cpp`). Using simdjson with package managers ------------------