diff options
Diffstat (limited to 'includes/password.inc')
-rw-r--r-- | includes/password.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/password.inc b/includes/password.inc index 553cae996..4940c50f9 100644 --- a/includes/password.inc +++ b/includes/password.inc @@ -148,7 +148,7 @@ function _password_crypt($algo, $password, $setting) { return FALSE; } - // Convert the base 2 logrithm into an integer. + // Convert the base 2 logarithm into an integer. $count = 1 << $count_log2; // We rely on the hash() function being available in PHP 5.2+. |