Fix a grammatical issue in String::isNotBlank docs

"except of ..." is wrong.
Instead, it should be either of the following:
  - "except ..."
  - "except for ..."
  - "with the exception of ..."

See https://www.merriam-webster.com/dictionary/except%20for
and https://ell.stackexchange.com/q/148197
This commit is contained in:
Mahdi Hosseinzadeh
2023-02-16 09:55:51 +03:30
committed by Space Team
parent 365ce2a6a5
commit d803e0e31c
+1 -1
View File
@@ -308,7 +308,7 @@ public inline fun CharSequence.isNotEmpty(): Boolean = length > 0
/** /**
* Returns `true` if this char sequence is not empty and contains some characters except of whitespace characters. * Returns `true` if this char sequence is not empty and contains some characters except whitespace characters.
* *
* @sample samples.text.Strings.stringIsNotBlank * @sample samples.text.Strings.stringIsNotBlank
*/ */