diff --git a/lib/WebDriver/Ime.php b/lib/WebDriver/Ime.php index 703ee95..f531d37 100644 --- a/lib/WebDriver/Ime.php +++ b/lib/WebDriver/Ime.php @@ -28,8 +28,8 @@ * * @method array available_engines() List all available engines on the machines. * @method string active_engine() Get the name of the active IME engine. - * @method boolean activated() Indicates whether IME input is active at the momeent. - * @method void deactivate() De-activates the curently active IME engine. + * @method boolean activated() Indicates whether IME input is active at the moment. + * @method void deactivate() De-activates the currently active IME engine. * @method void activate($json) Make an engine that is available active. */ final class Ime extends AbstractWebDriver diff --git a/lib/WebDriver/SauceLabs/SauceRest.php b/lib/WebDriver/SauceLabs/SauceRest.php index 962a75d..2defba4 100644 --- a/lib/WebDriver/SauceLabs/SauceRest.php +++ b/lib/WebDriver/SauceLabs/SauceRest.php @@ -103,7 +103,7 @@ public function getAccountLimits() /** * Create new sub-account: /rest/v1/users/:userId (POST) * - * For "parterns", $accountInfo also contains 'plan' => (one of 'free', 'small', 'team', 'com', or 'complus') + * For "partners", $accountInfo also contains 'plan' => (one of 'free', 'small', 'team', 'com', or 'complus') * * @param array $accountInfo array('username' => ..., 'password' => ..., 'name' => ..., 'email' => ...) * diff --git a/lib/WebDriver/Session.php b/lib/WebDriver/Session.php index 389eedb..4cd4b82 100644 --- a/lib/WebDriver/Session.php +++ b/lib/WebDriver/Session.php @@ -49,7 +49,7 @@ * @method void postAlert_text($jsonText) Sends keystrokes to a JavaScript prompt() dialog. * @method void accept_alert() Accepts the currently displayed alert dialog. * @method void dismiss_alert() Dismisses the currently displayed alert dialog. - * @method void moveto($jsonCoordinates) Move the mouse by an offset of the specificed element (or current mouse cursor). + * @method void moveto($jsonCoordinates) Move the mouse by an offset of the specified element (or current mouse cursor). * @method void click($jsonButton) Click any mouse button (at the coordinates set by the last moveto command). * @method void buttondown() Click and hold the left mouse button (at the coordinates set by the last moveto command). * @method void buttonup() Releases the mouse button previously held (where the mouse is currently at). @@ -270,7 +270,7 @@ public function focusWindow($name) /** * timeouts methods: /session/:sessionId/timeouts (POST) - * - $session->timesouts($json) - set timeout for an operation + * - $session->timeouts($json) - set timeout for an operation * - $session->timeouts()->method() - chaining * * @return \WebDriver\Timeouts diff --git a/lib/WebDriver/WebTest/WebTest.php b/lib/WebDriver/WebTest/WebTest.php index 2c1a762..edd17a5 100755 --- a/lib/WebDriver/WebTest/WebTest.php +++ b/lib/WebDriver/WebTest/WebTest.php @@ -27,7 +27,7 @@ /** * WebDriver\WebTest\WebTest class - test runner * - * WebDriver-based web test runner, outputing results in TAP format. + * WebDriver-based web test runner, outputting results in TAP format. * * @package WebDriver * @@ -165,8 +165,8 @@ public function getDirective($comment) /** * Is this a testable method? * - * @param string $className Class name - * @param \RefelectionMethod $reflectionMethod Reflection method + * @param string $className Class name + * @param \ReflectionMethod $reflectionMethod Reflection method * * @return boolean False if method should not be counted */