aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-02-16 01:04:20 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2021-02-16 01:04:20 +0200
commit110457543dd051fbea17f767495ffd519d1f5e57 (patch)
tree026f3c3e67d5badce43b2b5089dfa5decf89e28a /docs
parentf5bc0f33da1cdb7e9ac193d124ec0780a4b51584 (diff)
downloadmeson-110457543dd051fbea17f767495ffd519d1f5e57.zip
meson-110457543dd051fbea17f767495ffd519d1f5e57.tar.gz
meson-110457543dd051fbea17f767495ffd519d1f5e57.tar.bz2
Add missing apostrophes. [skip ci]
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Release-notes-for-0.57.0.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Release-notes-for-0.57.0.md b/docs/markdown/Release-notes-for-0.57.0.md
index 6b1a4ac..7d82bc3 100644
--- a/docs/markdown/Release-notes-for-0.57.0.md
+++ b/docs/markdown/Release-notes-for-0.57.0.md
@@ -24,7 +24,7 @@ Reading text files during configuration is now supported. This can be done at
any time after `project` has been called
```meson
-project(myproject', 'c')
+project('myproject', 'c')
license_text = run_command(
find_program('python3'), '-c', 'print(open("COPYING").read())'
).stdout().strip()
@@ -42,7 +42,7 @@ There are several problems with the above approach:
`fs.read` replaces the above idiom thus:
```meson
-project(myproject', 'c')
+project('myproject', 'c')
fs = import('fs')
license_text = fs.read('COPYING').strip()
about_header = configuration_data()