We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10261c5 commit 044eb09Copy full SHA for 044eb09
scala-strings/src/test/scala/com/baeldung/scala/strings/capitalize/CapitalizeWordsUnitTest.scala
@@ -30,7 +30,7 @@ class CapitalizeWordsUnitTest
30
(" ", ""),
31
("the quick brown fox jumps over the lazy Dog", "The Quick Brown Fox Jumps Over the Lazy Dog")
32
)
33
- it should "capitalize every words of a sentence with exclusion" in {
+ it should "capitalize every word of a sentence with exclusion" in {
34
forAll(tableWithExclusions) { (input, expected) =>
35
CapitalizeWords.capitalizeTitleCase(input) shouldBe expected
36
}
0 commit comments