summaryrefslogtreecommitdiff
path: root/docs/markdown/Rust-module.md
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-10-18 11:37:23 +0000
committerJussi Pakkanen <jpakkane@gmail.com>2023-11-22 22:13:39 +0200
commit9aa1393fdb6b757d82d82941e9a7cd3fc21e725f (patch)
tree6312c1d0fc5322f60af1e0679d6062dad0f79d29 /docs/markdown/Rust-module.md
parent30ab9747ae03364ac2ccd4a8f508286c57ed54a5 (diff)
downloadmeson-9aa1393fdb6b757d82d82941e9a7cd3fc21e725f.tar.gz
docs: fix bindgen_clang_arguments example
> error: unsupported option '--target'; did you mean '-target'?
Diffstat (limited to 'docs/markdown/Rust-module.md')
-rw-r--r--docs/markdown/Rust-module.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Rust-module.md b/docs/markdown/Rust-module.md
index 0fb9edef7..8ef8c433e 100644
--- a/docs/markdown/Rust-module.md
+++ b/docs/markdown/Rust-module.md
@@ -103,7 +103,7 @@ were never turned on by Meson.
```ini
[properties]
-bindgen_clang_arguments = ['--target', 'x86_64-linux-gnu']
+bindgen_clang_arguments = ['-target', 'x86_64-linux-gnu']
```
### proc_macro()