aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2023-10-17 16:18:31 +0200
committerXavier Claessens <xclaesse@gmail.com>2023-10-17 11:28:59 -0400
commit0781eab48123aadab1ca7973aff024b0d4789bd7 (patch)
tree9af924810ba9883d3240a01f8badb8c40de9dd3f
parente419184a9b2698983e3115e6552e67ac026a3ce1 (diff)
downloadmeson-0781eab48123aadab1ca7973aff024b0d4789bd7.zip
meson-0781eab48123aadab1ca7973aff024b0d4789bd7.tar.gz
meson-0781eab48123aadab1ca7973aff024b0d4789bd7.tar.bz2
release notes: fix snippet for "fill:" argument
The release notes were using the older spelling "length". Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r--docs/markdown/snippets/int_to_string_fill.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/markdown/snippets/int_to_string_fill.md b/docs/markdown/snippets/int_to_string_fill.md
index 2b0d250..44885ff 100644
--- a/docs/markdown/snippets/int_to_string_fill.md
+++ b/docs/markdown/snippets/int_to_string_fill.md
@@ -6,10 +6,10 @@ string representation of the integer with leading zeroes:
```meson
n = 4
message(n.to_string())
-message(n.to_string(length: 3))
+message(n.to_string(fill: 3))
n = -4
-message(n.to_string(length: 3))
+message(n.to_string(fill: 3))
```
OUTPUT:
@@ -17,4 +17,4 @@ OUTPUT:
4
004
-04
-``` \ No newline at end of file
+```