From 04cb304b2dfaf3f97994476dcf56d38a5421a96c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 19 Sep 2018 11:45:00 +0100 Subject: [PATCH] meson: fix missing closing bracket in option descriptions --- meson_options.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 460a13a9a3..b522ec24fc 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -87,9 +87,9 @@ option('tests', type : 'feature', value : 'auto', yield : true) 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,