aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Subprojects.md
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2017-05-02 21:03:27 -0400
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2017-05-03 16:20:53 -0400
commitf3ad633f55b8f2ac744924ca38018c41ee035f1e (patch)
tree5c61bf27c870ecb53b24bf6708d74b7977da542d /docs/markdown/Subprojects.md
parentb80d40c287789ec0cb430842923a0254c86a6150 (diff)
downloadmeson-f3ad633f55b8f2ac744924ca38018c41ee035f1e.zip
meson-f3ad633f55b8f2ac744924ca38018c41ee035f1e.tar.gz
meson-f3ad633f55b8f2ac744924ca38018c41ee035f1e.tar.bz2
doc: Fix several minor typos.
Diffstat (limited to 'docs/markdown/Subprojects.md')
-rw-r--r--docs/markdown/Subprojects.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Subprojects.md b/docs/markdown/Subprojects.md
index b4e0925..b91366d 100644
--- a/docs/markdown/Subprojects.md
+++ b/docs/markdown/Subprojects.md
@@ -18,7 +18,7 @@ else
endif
```
-All Meson features of the subproject, such as project options keep working and can be set in the master project. There are a few limitations, the most imporant being that global compiler arguments must be set in the main project before calling subproject. Subprojects must not set global arguments because there is no way to do that reliably over multiple subprojects. To check whether you are running as a subproject, use the `is_subproject` function.
+All Meson features of the subproject, such as project options keep working and can be set in the master project. There are a few limitations, the most important being that global compiler arguments must be set in the main project before calling subproject. Subprojects must not set global arguments because there is no way to do that reliably over multiple subprojects. To check whether you are running as a subproject, use the `is_subproject` function.
As an example, suppose we have a simple project that provides a shared library.