Fixed a typo
[core.git] / inc / classes / interfaces / user / class_ManageableAccount.php
index 15ffcb27d76b0c695536f7deb6ce356a1b918044..1e7937b9d5014c96897e1b6a142ede468cb054b3 100644 (file)
  */
 interface ManageableAccount extends FrameworkInterface {
        /**
-        * Determines wether the username exists or not
+        * Determines whether the username exists or not
         *
-        * @return      $exists         Wether the username exists
+        * @return      $exists         Whether the username exists
         */
        function ifUsernameExists ();
 
        /**
-        * Determines wether the email exists or not
+        * Determines whether the email exists or not
         *
-        * @return      $exists         Wether the email exists
+        * @return      $exists         Whether the email exists
         */
        function ifEmailAddressExists ();
 
@@ -41,7 +41,7 @@ interface ManageableAccount extends FrameworkInterface {
         * database.
         *
         * @param       $requestInstance        A requestable class instance
-        * @return      $matches                        Wether the supplied password hash matches
+        * @return      $matches                        Whether the supplied password hash matches
         */
        function ifPasswordHashMatches (Requestable $requestInstance);
 }