From faefd66b10ff4a14c329a3c6f379b7984579d579 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 1 Sep 2014 09:40:12 +0200 Subject: [PATCH] fixing typo in a comment --- src/Symfony/Component/Security/Core/Util/StringUtils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Core/Util/StringUtils.php b/src/Symfony/Component/Security/Core/Util/StringUtils.php index eaeed84779..5e130375b7 100644 --- a/src/Symfony/Component/Security/Core/Util/StringUtils.php +++ b/src/Symfony/Component/Security/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