We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01ffd2d commit 0fc6fc2Copy full SHA for 0fc6fc2
1 file changed
data/part-8/2-hash-map.md
@@ -673,8 +673,8 @@ text = text.trim(); // text nyt "ylpeys ja ennakkoluulo"
673
``` -->
674
```java
675
String text = "Pride and Prejudice ";
676
-text = text.toLowerCase(); // text currently "Pride and Prejudice "
677
-text = text.trim(); // text now "Pride and Prejudice"
+text = text.toLowerCase(); // text currently "pride and prejudice "
+text = text.trim(); // text now "pride and prejudice"
678
```
679
680
<!-- Edellä kuvatun merkkijonon muunnoksen johdosta kirja löytyy, vaikka käyttäjä kirjoittaisi kirjan nimen pienillä kirjaimilla.
0 commit comments