diff options
author | Christian Flothmann <christian.flothmann@xabbuh.de> | 2014-09-01 09:40:12 +0200 |
---|---|---|
committer | Christian Flothmann <christian.flothmann@xabbuh.de> | 2014-09-01 09:40:12 +0200 |
commit | 329bf0c9ec47ce666b2c552ae6ee4cce4a7fd6dd (patch) | |
tree | f68ed9fc751ffc24b65b99fd15764a5f3ff11d8b | |
parent | c5654d848b56630425d97042fd1e0b52f65933ad (diff) | |
download | symfony-security-329bf0c9ec47ce666b2c552ae6ee4cce4a7fd6dd.zip symfony-security-329bf0c9ec47ce666b2c552ae6ee4cce4a7fd6dd.tar.gz symfony-security-329bf0c9ec47ce666b2c552ae6ee4cce4a7fd6dd.tar.bz2 |
fixing typo in a commentv2.3.19
-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 |