Skip to content

Commit b51911e

Browse files
authored
Merge pull request #193 from Mehraddev/fix-grammar
fix grammar.md
2 parents 0fd0665 + 3ea4011 commit b51911e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/strings_ii/lowercase.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ For example, in Turkish the lower-case form of the letter `I` is `ı` and not `i
3131
By default, Java uses the rules for the language of the computer it is running on.
3232
So `"I".toLowerCase()` will return `"i"` on an English system and `"ı"` on a Turkish one.
3333

34-
To get behavior that is consistent regardless of the machine it is being run on
35-
you can pass use an explicit `Locale`.
34+
To get behavior that is consistent regardless of the machine it is being run on,
35+
you can use an explicit `Locale`.
3636

3737
```java
3838
~void main() {
3939
IO.println("I".toLowerCase(Locale.US)); // i - on every computer
4040
IO.println("I".toLowerCase(Locale.forLanguageTag("tr-TR"))); // ı - on every computer
4141
~}
42-
```
42+
```

0 commit comments

Comments
 (0)