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:
parent
e419184a9b
commit
0781eab481
|
@ -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
|
||||
```
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue