Skip to content

Commit

Permalink
meson: fix missing closing bracket in option descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
tp-m committed Sep 19, 2018
1 parent 900be50 commit 1978287
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson_options.txt
Expand Up @@ -72,9 +72,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,
Expand Down

0 comments on commit 1978287

Please sign in to comment.