release notes: fix snippet for "fill:" argument

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

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
pull/12392/head
Paolo Bonzini 1 year ago committed by Xavier Claessens
parent e419184a9b
commit 0781eab481
  1. 6
      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
```
```

Loading…
Cancel
Save