aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam C. Foltzer <acfoltzer@galois.com>2017-06-14 08:39:41 -0700
committerAdam C. Foltzer <acfoltzer@galois.com>2017-06-14 08:39:41 -0700
commit69b18cf7e95f101e78c434811a3a02ff219235be (patch)
tree2a38fd483aa05abdffcc209fcea73c1e26290bb8 /docs
parentbdd4c45b173055931db1c758cd7f016693d3a924 (diff)
downloadmeson-69b18cf7e95f101e78c434811a3a02ff219235be.zip
meson-69b18cf7e95f101e78c434811a3a02ff219235be.tar.gz
meson-69b18cf7e95f101e78c434811a3a02ff219235be.tar.bz2
rename `crate_type` to `rust_crate_type` per @TingPing
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Reference-manual.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md
index 61a66f0..dd77d6d 100644
--- a/docs/markdown/Reference-manual.md
+++ b/docs/markdown/Reference-manual.md
@@ -513,7 +513,7 @@ Builds a library that is either static or shared depending on the value of `defa
The keyword arguments for this are the same as for [`executable`](#executable) with the following additions:
- `name_prefix` the string that will be used as the suffix for the target by overriding the default (only used for libraries). By default this is `lib` on all platforms and compilers except with MSVC where it is omitted.
-- `crate_type` specifies the crate type for Rust libraries. Defaults to `dylib` for shared libraries and `rlib` for static libraries.
+- `rust_crate_type` specifies the crate type for Rust libraries. Defaults to `dylib` for shared libraries and `rlib` for static libraries.
`static_library` and `shared_library` also accept these keyword arguments.