aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Pappacoda <34214253+Tachi107@users.noreply.github.com>2021-07-08 18:16:27 +0200
committerEli Schwartz <eschwartz93@gmail.com>2021-07-08 14:05:17 -0400
commitc8c7c568976524d0191f7d447d4e45b7e50f295b (patch)
tree5703baff966d28965b99b94c5d720c16985f60f3
parentb20cfec4bc9f540cb19e86c97014776be0197eff (diff)
downloadmeson-c8c7c568976524d0191f7d447d4e45b7e50f295b.zip
meson-c8c7c568976524d0191f7d447d4e45b7e50f295b.tar.gz
meson-c8c7c568976524d0191f7d447d4e45b7e50f295b.tar.bz2
docs: fix minor typos in Machine-files.md
-rw-r--r--docs/markdown/Machine-files.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/markdown/Machine-files.md b/docs/markdown/Machine-files.md
index 6c0b051..6314082 100644
--- a/docs/markdown/Machine-files.md
+++ b/docs/markdown/Machine-files.md
@@ -7,7 +7,7 @@ compilation](Cross-compilation.md) and [native
environments](Native-environments.md).
*Changed in 0.56.0* Keys within sections are now case sensitive. This
-*is required to make project options work correctly.
+is required to make project options work correctly.
## Data Types
@@ -144,8 +144,8 @@ linker for Meson to invoke, such as `link.exe` or `lld-link.exe`.
Support for `ld` is *new in 0.53.0*
*changed in 0.53.1* the `ld` variable was replaced by `<lang>_ld`,
-*because it regressed a large number of projects. in 0.53.0 the `ld`
-*variable was used instead.
+because it regressed a large number of projects. in 0.53.0 the `ld`
+variable was used instead.
Native example:
@@ -268,7 +268,7 @@ following code in the CMake toolchain file:
```cmake
set(CMAKE_C_COMPILER "/usr/bin/gcc")
-set(CMAKE_C_COMPILER "C:/usr/bin/g++")
+set(CMAKE_CXX_COMPILER "C:/usr/bin/g++")
set(CMAKE_SOME_VARIABLE "some" "value with spaces")
```