diff options
author | spaette <spaette@users.noreply.github.com> | 2024-09-13 14:39:53 -0500 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2024-09-19 13:51:52 -0700 |
commit | 19f9369b4cedab072eb7516e738a505ad635aca8 (patch) | |
tree | 9b7e84ea588f9eb6360bb37878417219a74c9c11 /docs | |
parent | e5d03f5e138173b03ad2b0223bbcb8f436cb3bf1 (diff) | |
download | meson-19f9369b4cedab072eb7516e738a505ad635aca8.zip meson-19f9369b4cedab072eb7516e738a505ad635aca8.tar.gz meson-19f9369b4cedab072eb7516e738a505ad635aca8.tar.bz2 |
Fix typos
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Release-notes-for-1.3.0.md | 4 | ||||
-rw-r--r-- | docs/markdown/Subprojects.md | 2 | ||||
-rw-r--r-- | docs/markdown/Wrap-dependency-system-manual.md | 2 |
3 files changed, 4 insertions, 4 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 |