From 14a32d13d0e4cc58c0a2446236fa343ce9f0a130 Mon Sep 17 00:00:00 2001 From: Hyunjin Choi Date: Mon, 3 Feb 2020 23:23:32 +0900 Subject: [PATCH] Fix typo in StringUtils class Closes gh-24471 --- .../src/main/java/org/springframework/util/StringUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-core/src/main/java/org/springframework/util/StringUtils.java b/spring-core/src/main/java/org/springframework/util/StringUtils.java index 24af9f14d5..70cbf256a1 100644 --- a/spring-core/src/main/java/org/springframework/util/StringUtils.java +++ b/spring-core/src/main/java/org/springframework/util/StringUtils.java @@ -79,7 +79,7 @@ public abstract class StringUtils { /** * Check whether the given object (possibly a {@code String}) is empty. - * This is effectly a shortcut for {@code !hasLength(String)}. + * This is effectively a shortcut for {@code !hasLength(String)}. *

This method accepts any Object as an argument, comparing it to * {@code null} and the empty String. As a consequence, this method * will never return {@code true} for a non-null non-String object.