summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--book/src/cpp.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/book/src/cpp.md b/book/src/cpp.md
index 8a790407..6fef6391 100644
--- a/book/src/cpp.md
+++ b/book/src/cpp.md
@@ -12,10 +12,10 @@ force C++ mode. You probably also want to use `-std=c++14` or similar clang args
as well.
You pretty much **must** use [whitelisting](./whitelisting.md) when working
-with C++ to avoid pulling in all of the `std::*` types, many of which `bindgen`
+with C++ to avoid pulling in all of the `std::.*` types, many of which `bindgen`
cannot handle. Additionally, you may want to mark other types as
[opaque](./opaque.md) that `bindgen` stumbles on. It is recommended to mark
-all of `std::*` opaque, and to whitelist only precisely the functions and types
+all of `std::.*` opaque, and to whitelist only precisely the functions and types
you intend to use.
You should read up on the [FAQs](./faq.md) as well.