diff options
author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2022-10-22 16:42:21 -0400 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-10-23 03:06:39 +0300 |
commit | fa2585d0b364143fb588b8bb611eaa4d1c277811 (patch) | |
tree | 529fe5facf7c43c453a8569073b31fc122efcc68 /docs/markdown/Generating-sources.md | |
parent | b98356e0557399803895755a5f513841345fba1b (diff) | |
download | meson-fa2585d0b364143fb588b8bb611eaa4d1c277811.zip meson-fa2585d0b364143fb588b8bb611eaa4d1c277811.tar.gz meson-fa2585d0b364143fb588b8bb611eaa4d1c277811.tar.bz2 |
Fix typos in docs
Diffstat (limited to 'docs/markdown/Generating-sources.md')
-rw-r--r-- | docs/markdown/Generating-sources.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Generating-sources.md b/docs/markdown/Generating-sources.md index 3cdfbc4..b954a41 100644 --- a/docs/markdown/Generating-sources.md +++ b/docs/markdown/Generating-sources.md @@ -75,7 +75,7 @@ executable('myexe', ['main.c', foo_h], link_with : libfoo) ``` Each target that depends on a generated header should add that header -to it's sources, as seen above with `libfoo` and `myexe`. This is +to its sources, as seen above with `libfoo` and `myexe`. This is because there is no way for Meson or the backend to know that `myexe` depends on `foo.h` just because `libfoo` does, it could be a private header. |