spelling: efficient

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2024-10-22 09:07:18 -04:00
committed by Jindra Petřík
parent b0ca5a8117
commit f9ece53de2
2 changed files with 2 additions and 2 deletions

View File

@@ -280,7 +280,7 @@ public class ReflectUtils {
* any that may be thrown.
* This will also find a setter that accepts an interface that the value
* implements.
* <b>This is still not very effcient and should only be called if
* <b>This is still not very efficient and should only be called if
* performance is not of an issue.</b>
* You can check the return value to see if the call was seuccessful or
* not.

View File

@@ -30,7 +30,7 @@ public class StringUtils {
* @return true if the word startsWith abbr, or if any uppercase char in abbr
* matches the next uppercase char in word
*
* FIXME: not so effecient as it creates a StringBuilder, but works
* FIXME: not so efficient as it creates a StringBuilder, but works
* FIXME: add {@code Comparator<String, String>}
*/
public static boolean camelCaseMatch(String word, String abbr) {