summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-09-19 12:01:47 +0100
committerTim-Philipp Müller <tim@centricular.com>2018-09-19 12:01:47 +0100
commit15c566cd35b7be8488ce3e81415ba5829dcc5ee8 (patch)
tree5cbc12cbf14abd68f52d7b1794e228e1712d26e8
parentf8327f684c509a050d7cb98c3c45699f8d01f877 (diff)
meson: fix missing closing bracket in option descriptions
-rw-r--r--meson_options.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 2809b3cb2..6f1ad2184 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -150,9 +150,9 @@ option('introspection', type : 'feature', value : 'auto', yield : true, descript
option('nls', type : 'feature', value : 'auto', yield: true, description : 'Enable native language support (translations)')
option('orc', type : 'feature', value : 'auto', yield : true)
option('gobject-cast-checks', type : 'feature', value : 'auto', yield : true,
- description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases')
+ description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)')
option('glib-asserts', type : 'feature', value : 'enabled', yield : true,
- description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases')
+ description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)')
# Common options
option('package-name', type : 'string', yield : true,