summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--book/src/cpp.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/src/cpp.md b/book/src/cpp.md
index e0fbecb7..016caf1b 100644
--- a/book/src/cpp.md
+++ b/book/src/cpp.md
@@ -17,7 +17,7 @@ of them in a type it is generating bindings for:
* SFINAE
When passing in header files, the file will automatically be treated as C++ if
-it ends in `.hpp`. If it doesn't, adding `-x=c++` clang args can be used to
+it ends in `.hpp`. If it doesn't, adding `-x c++` clang args can be used to
force C++ mode. You probably also want to use `-std=c++14` or similar clang args
as well.