Skip to content

Commit

Permalink
Fix string formatting alignment typos (#2297)
Browse files Browse the repository at this point in the history
  • Loading branch information
huynhloc-1110 committed Aug 13, 2024
1 parent acfdd33 commit 7f09e41
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion concepts/string-formatting/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ A format item can comprise up to 3 parts. The first is the mandatory expression

`{<interpolationExpression>[,<alignment>][:<formatString>]}`

The _alignment_ specifies the length of the "field" in which the text is placed, padded to the left with spaces if the alignment is negative or to the right if it is positive.
The _alignment_ specifies the length of the "field" in which the text is placed, padded to the left with spaces if the alignment is positive or to the right if it is negative.

The _format string_ specifies the shape of the text output such as whether thousands separators should be included for a number or whether the date part only of a `DateTime` object should be output.

Expand Down
2 changes: 1 addition & 1 deletion concepts/string-formatting/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ A format item can comprise up to 3 parts. The first is the mandatory expression

`{<interpolationExpression>[,<alignment>][:<formatString>]`

The _alignment_ specifies the length of the "field" in which the text is placed, padded to the left with spaces if the alignment is negative or to the right if it is positive.
The _alignment_ specifies the length of the "field" in which the text is placed, padded to the left with spaces if the alignment is positive or to the right if it is negative.

The _format string_ specifies the shape of the text output such as whether thousands separators should be included for a number or whether the date part only of a `DateTime` object should be output.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ A format item can comprise up to 3 parts. The first is the mandatory expression

`{<interpolationExpression>[,<alignment>][:<formatString>]`

The _alignment_ specifies the length of the "field" in which the text is placed, padded to the left with spaces if the alignment is negative or to the right if it is positive.
The _alignment_ specifies the length of the "field" in which the text is placed, padded to the left with spaces if the alignment is positive or to the right if it is negative.

The _format string_ specifies the shape of the text output such as whether thousands separators should be included for a number or whether the date part only of a `DateTime` object should be output.

Expand Down

0 comments on commit 7f09e41

Please sign in to comment.