summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/coercing_option_values_deprecated.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/markdown/snippets/coercing_option_values_deprecated.md')
-rw-r--r--docs/markdown/snippets/coercing_option_values_deprecated.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/markdown/snippets/coercing_option_values_deprecated.md b/docs/markdown/snippets/coercing_option_values_deprecated.md
deleted file mode 100644
index 36213877a..000000000
--- a/docs/markdown/snippets/coercing_option_values_deprecated.md
+++ /dev/null
@@ -1,9 +0,0 @@
-## coercing values in the option() function is deprecated
-
-Currently code such as:
-```meson
-option('foo', type : 'boolean', value : 'false')
-```
-works, because Meson coerces `'false'` to `false`.
-
-This should be avoided, and will now result in a deprecation warning.