diff --git a/core/lib/Drupal/Core/Password/PhpassHashedPassword.php b/core/lib/Drupal/Core/Password/PhpassHashedPassword.php index 0f943a450de..b047a8df408 100644 --- a/core/lib/Drupal/Core/Password/PhpassHashedPassword.php +++ b/core/lib/Drupal/Core/Password/PhpassHashedPassword.php @@ -166,8 +166,8 @@ class PhpassHashedPassword implements PasswordInterface { } $count_log2 = $this->getCountLog2($setting); // Stored hashes may have been crypted with any iteration count. However we - // do not allow applying the algorithm for unreasonable low and heigh - // values respectively. + // do not allow applying the algorithm for unreasonable low and high values + // respectively. if ($count_log2 != $this->enforceLog2Boundaries($count_log2)) { return FALSE; }