Skip to content

Commit

Permalink
release notes: fix snippet for "fill:" argument
Browse files Browse the repository at this point in the history
The release notes were using the older spelling "length".

Signed-off-by: Paolo Bonzini <[email protected]>
  • Loading branch information
bonzini authored and xclaesse committed Oct 17, 2023
1 parent e419184 commit 0781eab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/markdown/snippets/int_to_string_fill.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ 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:
```meson
4
004
-04
```
```

0 comments on commit 0781eab

Please sign in to comment.