Skip to content

Commit 044eb09

Browse files
committed
typo fix
1 parent 10261c5 commit 044eb09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scala-strings/src/test/scala/com/baeldung/scala/strings/capitalize/CapitalizeWordsUnitTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class CapitalizeWordsUnitTest
3030
(" ", ""),
3131
("the quick brown fox jumps over the lazy Dog", "The Quick Brown Fox Jumps Over the Lazy Dog")
3232
)
33-
it should "capitalize every words of a sentence with exclusion" in {
33+
it should "capitalize every word of a sentence with exclusion" in {
3434
forAll(tableWithExclusions) { (input, expected) =>
3535
CapitalizeWords.capitalizeTitleCase(input) shouldBe expected
3636
}

0 commit comments

Comments
 (0)