aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspaette <spaette@users.noreply.github.com>2024-09-13 14:39:53 -0500
committerDylan Baker <dylan@pnwbakers.com>2024-09-19 13:51:52 -0700
commit19f9369b4cedab072eb7516e738a505ad635aca8 (patch)
tree9b7e84ea588f9eb6360bb37878417219a74c9c11
parente5d03f5e138173b03ad2b0223bbcb8f436cb3bf1 (diff)
downloadmeson-19f9369b4cedab072eb7516e738a505ad635aca8.zip
meson-19f9369b4cedab072eb7516e738a505ad635aca8.tar.gz
meson-19f9369b4cedab072eb7516e738a505ad635aca8.tar.bz2
Fix typos
-rw-r--r--docs/markdown/Release-notes-for-1.3.0.md4
-rw-r--r--docs/markdown/Subprojects.md2
-rw-r--r--docs/markdown/Wrap-dependency-system-manual.md2
-rw-r--r--test cases/unit/121 executable suffix/meson.build2
4 files changed, 5 insertions, 5 deletions
diff --git a/docs/markdown/Release-notes-for-1.3.0.md b/docs/markdown/Release-notes-for-1.3.0.md
index 1a1d048..0c7660f 100644
--- a/docs/markdown/Release-notes-for-1.3.0.md
+++ b/docs/markdown/Release-notes-for-1.3.0.md
@@ -89,8 +89,8 @@ you to set the environment in which the generator will process inputs.
In previous versions of meson, a `meson.build` file like this:
```
-exectuable('foo', 'main.c')
-exectuable('foo', 'main.c', name_suffix: 'bar')
+executable('foo', 'main.c')
+executable('foo', 'main.c', name_suffix: 'bar')
```
would result in a configure error because meson internally used
diff --git a/docs/markdown/Subprojects.md b/docs/markdown/Subprojects.md
index 78239b9..0375b56 100644
--- a/docs/markdown/Subprojects.md
+++ b/docs/markdown/Subprojects.md
@@ -300,7 +300,7 @@ types. Multiple types can be set as comma separated list e.g. `--types
git,file`.
*Since 0.56.0* If the subcommand fails on any subproject an error code
-is returned at the end instead of retuning success.
+is returned at the end instead of returning success.
### Download subprojects
diff --git a/docs/markdown/Wrap-dependency-system-manual.md b/docs/markdown/Wrap-dependency-system-manual.md
index 60568f1..9bb7a84 100644
--- a/docs/markdown/Wrap-dependency-system-manual.md
+++ b/docs/markdown/Wrap-dependency-system-manual.md
@@ -379,7 +379,7 @@ Some naming conventions need to be respected:
Since *1.5.0* Cargo wraps can also be provided with `Cargo.lock` file at the root
of (sub)project source tree. Meson will automatically load that file and convert
-it into a serie of wraps definitions.
+it into a series of wraps definitions.
## Using wrapped projects
diff --git a/test cases/unit/121 executable suffix/meson.build b/test cases/unit/121 executable suffix/meson.build
index 8f95226..7dff9d6 100644
--- a/test cases/unit/121 executable suffix/meson.build
+++ b/test cases/unit/121 executable suffix/meson.build
@@ -1,3 +1,3 @@
-project('exectuable suffix', 'c')
+project('executable suffix', 'c')
foo = executable('foo', 'main.c')
foo_bin = executable('foo', 'main.c', name_suffix: 'bin')