Fix String capitalize/decapitalize sample references and sample names

This commit is contained in:
Stuart Kent
2017-06-27 12:54:36 -04:00
committed by Ilya Gorbunov
parent ab919886ae
commit 962958c403
2 changed files with 4 additions and 4 deletions
@@ -13,7 +13,7 @@ class Strings {
}
@Sample
fun decaptialize() {
fun decapitalize() {
assertPrints("abcd".decapitalize(), "abcd")
assertPrints("Abcd".decapitalize(), "abcd")
}
@@ -51,4 +51,4 @@ class Strings {
}
}
}