From 0781eab48123aadab1ca7973aff024b0d4789bd7 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Tue, 17 Oct 2023 16:18:31 +0200 Subject: release notes: fix snippet for "fill:" argument The release notes were using the older spelling "length". Signed-off-by: Paolo Bonzini --- docs/markdown/snippets/int_to_string_fill.md | 6 +++--- 1 file 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 +``` -- cgit v1.1