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
|
```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:
|
||||||
|
|
Loading…
Reference in New Issue