summaryrefslogtreecommitdiff
path: root/docs/markdown/Release-notes-for-0.56.0.md
diff options
context:
space:
mode:
authorTristan Partin <tpartin@micron.com>2022-11-15 18:16:29 -0600
committerEli Schwartz <eschwartz93@gmail.com>2022-11-15 19:33:32 -0500
commita2cac72d9bcbe8d31dc591992964599c5664ba66 (patch)
treed606192623fe0c9c867e4e964ec34fbaefe5c7d2 /docs/markdown/Release-notes-for-0.56.0.md
parent8dfa55005e4f6386e54ca53909b66933e5930858 (diff)
downloadmeson-a2cac72d9bcbe8d31dc591992964599c5664ba66.tar.gz
Change `unstable_external_project` to `unstable-external_project`
Apparently this is a misspelling even though it has been in the docs since the creation of the module.
Diffstat (limited to 'docs/markdown/Release-notes-for-0.56.0.md')
-rw-r--r--docs/markdown/Release-notes-for-0.56.0.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Release-notes-for-0.56.0.md b/docs/markdown/Release-notes-for-0.56.0.md
index 368681fe6..782bb39bf 100644
--- a/docs/markdown/Release-notes-for-0.56.0.md
+++ b/docs/markdown/Release-notes-for-0.56.0.md
@@ -281,7 +281,7 @@ the default compiler.
## External projects
-A new experimental module `unstable_external_project` has been added
+A new experimental module `unstable-external_project` has been added
to build code using other build systems than Meson. Currently only
supporting projects with a configure script that generates Makefiles.
@@ -290,7 +290,7 @@ project('My Autotools Project', 'c',
meson_version : '>=0.56.0',
)
-mod = import('unstable_external_project')
+mod = import('unstable-external_project')
p = mod.add_project('configure',
configure_options : ['--prefix=@PREFIX@',