aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGabrĂ­el ArthĂșr PĂ©tursson <gabriel@system.is>2017-05-01 21:38:32 +0000
committerJussi Pakkanen <jpakkane@gmail.com>2017-05-02 00:52:29 +0300
commitae924b01a006bc1542fe7eaae1d8a933459e8a0a (patch)
tree202cf3360333fb96a5f90ea0a3a7e2b75addc71d /docs
parentde762feb87a408d42cbf384a0f4ab4d5de2bfca7 (diff)
downloadmeson-ae924b01a006bc1542fe7eaae1d8a933459e8a0a.zip
meson-ae924b01a006bc1542fe7eaae1d8a933459e8a0a.tar.gz
meson-ae924b01a006bc1542fe7eaae1d8a933459e8a0a.tar.bz2
docs: s/no tbe/not be/
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Meson-design-rationale:-A-proposal-for-a-better-cross-platform-build-system.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Meson-design-rationale:-A-proposal-for-a-better-cross-platform-build-system.md b/docs/markdown/Meson-design-rationale:-A-proposal-for-a-better-cross-platform-build-system.md
index 9636238..3a7e88d 100644
--- a/docs/markdown/Meson-design-rationale:-A-proposal-for-a-better-cross-platform-build-system.md
+++ b/docs/markdown/Meson-design-rationale:-A-proposal-for-a-better-cross-platform-build-system.md
@@ -105,7 +105,7 @@ foolib = shared_library('foobar', sources : 'foobar.c',\
exe = executable('testfoobar', 'tester.c', link : foolib)
add_test('test library', exe)`
-First we build a shared library named foobar. It is marked installable, so running `ninja install` installs it to the library directory (the system knows which one so the user does not have to care). Then we build a test executable which is linked against the library. It will no tbe installed, but instead it is added to the list of unit tests, which can be run with the command `ninja test`.
+First we build a shared library named foobar. It is marked installable, so running `ninja install` installs it to the library directory (the system knows which one so the user does not have to care). Then we build a test executable which is linked against the library. It will not be installed, but instead it is added to the list of unit tests, which can be run with the command `ninja test`.
Above we mentioned precompiled headers as a feature not supported by other build systems. Here's how you would use them.