release notes: fix snippet for "fill:" argument

The release notes were using the older spelling "length".

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2023-10-17 16:18:31 +02:00 committed by Xavier Claessens
parent e419184a9b
commit 0781eab481
1 changed files with 3 additions and 3 deletions

View File

@ -6,10 +6,10 @@ string representation of the integer with leading zeroes:
```meson ```meson
n = 4 n = 4
message(n.to_string()) message(n.to_string())
message(n.to_string(length: 3)) message(n.to_string(fill: 3))
n = -4 n = -4
message(n.to_string(length: 3)) message(n.to_string(fill: 3))
``` ```
OUTPUT: OUTPUT:
@ -17,4 +17,4 @@ OUTPUT:
4 4
004 004
-04 -04
``` ```