summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz93@gmail.com>2024-02-25 21:17:54 -0500
committerEli Schwartz <eschwartz93@gmail.com>2024-02-25 21:17:54 -0500
commit42944f72a438ea746dc6484b57bb0ffe429ea79f (patch)
tree8af5da39dd7e6a5bce8676c059dc2368fcfbcdf5 /docs
parentdf2dbd06cfb1460ca8cc12d5cb140c32bcc4f91a (diff)
downloadmeson-42944f72a438ea746dc6484b57bb0ffe429ea79f.tar.gz
docs: fix some release notes snippet typos
commit 6a8330af598753d5982a37933beeac2d6b565386: hpp was clearly meant and used several times, just not in the release notes themelves. commit a75ced6d50a3d479eda6dcdc9c3482493f2161f0: C/C++ "what"? We mention the std in the commit, but not in the text of the release notes.
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/snippets/rust-bindgen-cpp.md2
-rw-r--r--docs/markdown/snippets/rust-bindgen-std.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/snippets/rust-bindgen-cpp.md b/docs/markdown/snippets/rust-bindgen-cpp.md
index e12e0f966..7d1bec37d 100644
--- a/docs/markdown/snippets/rust-bindgen-cpp.md
+++ b/docs/markdown/snippets/rust-bindgen-cpp.md
@@ -1,6 +1,6 @@
## Bindgen will now use Meson's hueristic for what is a C++ header
-Bindgen natively assumes that a file with the extension `.cpp` is a C++ header,
+Bindgen natively assumes that a file with the extension `.hpp` is a C++ header,
but that everything else is a C header. Meson has a whole list of extensions it
considers to be C++, and now will automatically look for those extensions and
set bindgen to treat those as C++
diff --git a/docs/markdown/snippets/rust-bindgen-std.md b/docs/markdown/snippets/rust-bindgen-std.md
index 2c94f9c2c..34ae611fc 100644
--- a/docs/markdown/snippets/rust-bindgen-std.md
+++ b/docs/markdown/snippets/rust-bindgen-std.md
@@ -1,3 +1,3 @@
-## Bindgen now uses the same C/C++ as the project as a whole
+## Bindgen now uses the same C/C++ std as the project as a whole
Which is very important for C++ bindings.