diff options
author | Luca Weiss <luca@z3ntu.xyz> | 2021-02-03 19:36:20 +0100 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-02-03 11:15:14 -0800 |
commit | 673aff3595d04a82d431dc4903c95227481565ca (patch) | |
tree | 426af8caba9611a53704c874d502cc0770857e56 /docs/markdown | |
parent | a174855200ee0fd42bb3d23374a9d018b1888948 (diff) | |
download | meson-673aff3595d04a82d431dc4903c95227481565ca.zip meson-673aff3595d04a82d431dc4903c95227481565ca.tar.gz meson-673aff3595d04a82d431dc4903c95227481565ca.tar.bz2 |
Fix some typos in the release notes snippets
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/snippets/lto_threads.md | 4 | ||||
-rw-r--r-- | docs/markdown/snippets/meson_test_depends.md | 2 | ||||
-rw-r--r-- | docs/markdown/snippets/unstable-rust-module.md | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/markdown/snippets/lto_threads.md b/docs/markdown/snippets/lto_threads.md index a6f7614..77c8047 100644 --- a/docs/markdown/snippets/lto_threads.md +++ b/docs/markdown/snippets/lto_threads.md @@ -1,7 +1,7 @@ ## Knob to control LTO thread -Both the gnu linker and lld support using threads for speading up LTO, meson +Both the gnu linker and lld support using threads for speeding up LTO, meson now provides a knob for this: `-Db_lto_threads`. Currently this is only supported for clang and gcc. Any positive integer is supported, `0` means -`auto`. If the compiler or linker implemnets it's on `auto` we use that, +`auto`. If the compiler or linker implements it's on `auto` we use that, otherwise the number of threads on the machine is used. diff --git a/docs/markdown/snippets/meson_test_depends.md b/docs/markdown/snippets/meson_test_depends.md index 905c59f..46ec328 100644 --- a/docs/markdown/snippets/meson_test_depends.md +++ b/docs/markdown/snippets/meson_test_depends.md @@ -12,5 +12,5 @@ using commands like the following: This would find the broken commit automatically while at each step rebuilding only those pieces of code needed to run the test. -However, this change could cause failures when upgrading to 0.57, ifthe +However, this change could cause failures when upgrading to 0.57, if the dependencies are not specified correctly in `meson.build`. diff --git a/docs/markdown/snippets/unstable-rust-module.md b/docs/markdown/snippets/unstable-rust-module.md index 47790e3..e594ecf 100644 --- a/docs/markdown/snippets/unstable-rust-module.md +++ b/docs/markdown/snippets/unstable-rust-module.md @@ -1,4 +1,4 @@ -## Untable Rust module +## Unstable Rust module A new unstable module has been added to make using Rust with Meson easier. Currently it adds a single function to ease defining Rust tests. |