diff options
Diffstat (limited to 'Core/Util/StringUtils.php')
-rw-r--r-- | Core/Util/StringUtils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Util/StringUtils.php b/Core/Util/StringUtils.php index eaeed84..5e13037 100644 --- a/Core/Util/StringUtils.php +++ b/Core/Util/StringUtils.php @@ -38,7 +38,7 @@ class StringUtils $knownLen = strlen($knownString); $userLen = strlen($userInput); - // Extend know string to avoid uninitialized string offsets + // Extend the known string to avoid uninitialized string offsets $knownString .= $userInput; // Set the result to the difference between the lengths |