Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
spaette authored and dcbaker committed Sep 19, 2024
1 parent e5d03f5 commit 19f9369
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/markdown/Release-notes-for-1.3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/markdown/Subprojects.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/markdown/Wrap-dependency-system-manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion test cases/unit/121 executable suffix/meson.build
Original file line number Diff line number Diff line change
@@ -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')

0 comments on commit 19f9369

Please sign in to comment.