Mistake in String Formatting alignment?

I found this in High School Sweethearts in C# on Exercism.

{<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.

English is not my native language so I’m not sure, but should it be

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.

instead?

You are correct! A PR would be appreciated!

1 Like

I have made a PR at #2297!

2 Likes