diff options
author | katie.martin <57912822+katie-martin-fastly@users.noreply.github.com> | 2020-02-03 17:41:34 -0500 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2020-02-05 02:03:23 +0100 |
commit | ce9d8f7a5a255c0d00a06f0434bb9588d90bc7d6 (patch) | |
tree | 210556d664625c737455bab3f28cc9d6e4d04842 | |
parent | 02e76faa7a9270125ea9b8dc45cff3f475283d6e (diff) |
fix documentation typo
`book/src/cpp.md` can have little a typo fix, as a treat.
-rw-r--r-- | book/src/cpp.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/book/src/cpp.md b/book/src/cpp.md index 989f2741..319cc98f 100644 --- a/book/src/cpp.md +++ b/book/src/cpp.md @@ -1,6 +1,6 @@ # Generating Bindings to C++ -`bindgen` can handle a some C++ features, but not all of them. To set +`bindgen` can handle some C++ features, but not all of them. To set expectations: `bindgen` will give you the type definitions and FFI declarations you need to build an API to the C++ library, but using those types in Rust will be nowhere near as nice as using them in C++. You will have to manually call |