diff --git a/src/Plugin/PasswordConstraint/PasswordPnwed.php b/src/Plugin/PasswordConstraint/PasswordPnwed.php
index e717e4f..426e1ee 100644
--- a/src/Plugin/PasswordConstraint/PasswordPnwed.php
+++ b/src/Plugin/PasswordConstraint/PasswordPnwed.php
@@ -106,7 +106,7 @@ class PasswordPnwed extends PasswordConstraintBase implements ContainerFactoryPl
     $occurences = $this->pwnedPasswordsClient->getOccurrences($password);
 
     if ($occurences >= $this->configuration['min_occurrences']) {
-      $validation->setErrorMessage($this->t("Password has been exposed :occurences time(s) in data breaches. Choose a different password. If you\'ve used this password on other sites, change it immediately!", [':occurences' => $occurences]));
+      $validation->setErrorMessage($this->t("Password has been exposed :occurences time(s) in data breaches. Choose a different password. If you've used this password on other sites, change it immediately!", [':occurences' => $occurences]));
     }
 
     return $validation;
