[meson] Remove spaces before named parameter colons
meson documentations sometimes adds the space and sometimes don't and we
aren't adding it most of the times unconsciously so let's the cases and
be consistent.
diff --git a/meson_options.txt b/meson_options.txt
index e68a83f..b9102a8 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -21,12 +21,12 @@
description: 'Enable CoreText shaper backend on macOS')
# Common feature options
-option('tests', type : 'feature', value : 'enabled', yield : true,
+option('tests', type: 'feature', value: 'enabled', yield: true,
description: 'Enable or disable unit tests')
-option('introspection', type : 'feature', value : 'auto', yield : true,
- description : 'Generate gobject-introspection bindings (.gir/.typelib files)')
-option('gtk_doc', type : 'feature', value : 'auto', yield : true,
- description : 'Generate documentation with gtk-doc')
+option('introspection', type: 'feature', value: 'auto', yield: true,
+ description: 'Generate gobject-introspection bindings (.gir/.typelib files)')
+option('gtk_doc', type: 'feature', value: 'auto', yield: true,
+ description: 'Generate documentation with gtk-doc')
option('icu_builtin', type: 'boolean', value: false,
description: 'Don\'t separate ICU support as harfbuzz-icu module')