diff options
author | Mohammed Sadiq <sadiq@sadiqpk.org> | 2017-10-02 16:05:10 +0530 |
---|---|---|
committer | Igor Gnatenko <ignatenko@redhat.com> | 2017-10-02 12:26:20 +0100 |
commit | 35313c2a850020dc2d98c1aa5b2f4340e49f01d6 (patch) | |
tree | 7162c581b8718afa3ae13b116ba41331f556b183 /docs | |
parent | cb3d980a1f4b84303a03f4caf21c158fdd51cae7 (diff) | |
download | meson-35313c2a850020dc2d98c1aa5b2f4340e49f01d6.zip meson-35313c2a850020dc2d98c1aa5b2f4340e49f01d6.tar.gz meson-35313c2a850020dc2d98c1aa5b2f4340e49f01d6.tar.bz2 |
docs: Fix typo
Remove the quote before parens
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Reference-manual.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index f37fb34..3bdd3c5 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1614,7 +1614,7 @@ during tests. It should be passed as the `env` keyword argument to tests. It has the following methods. - `append(varname, value)` appends the given value to the old value of - the environment variable, e.g. `env.append'('FOO', 'BAR', separator + the environment variable, e.g. `env.append('FOO', 'BAR', separator : ';')` produces `BOB;BAR` if `FOO` had the value `BOB` and plain `BAR` if the value was not defined. If the separator is not specified explicitly, the default path separator for the host |