From 3ea40119c9f272623bfc3f8d5e3b64a62004e691 Mon Sep 17 00:00:00 2001 From: Mehrad Dev <81879565+Mehraddev@users.noreply.github.com> Date: Thu, 20 Nov 2025 22:46:10 +0330 Subject: [PATCH] fix grammar.md - remove an additional verb - add a comma for clarity --- src/strings_ii/lowercase.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/strings_ii/lowercase.md b/src/strings_ii/lowercase.md index d9524f8..7672c32 100644 --- a/src/strings_ii/lowercase.md +++ b/src/strings_ii/lowercase.md @@ -31,12 +31,12 @@ For example, in Turkish the lower-case form of the letter `I` is `ı` and not `i By default, Java uses the rules for the language of the computer it is running on. So `"I".toLowerCase()` will return `"i"` on an English system and `"ı"` on a Turkish one. -To get behavior that is consistent regardless of the machine it is being run on -you can pass use an explicit `Locale`. +To get behavior that is consistent regardless of the machine it is being run on, +you can use an explicit `Locale`. ```java ~void main() { IO.println("I".toLowerCase(Locale.US)); // i - on every computer IO.println("I".toLowerCase(Locale.forLanguageTag("tr-TR"))); // ı - on every computer ~} -``` \ No newline at end of file +```