Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns committed May 27, 2014
1 parent f0b2693 commit c6f76f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ phantom.run(function () {
});
```

For further convenience all PhantomJS modules are already available in the gobal scope.
For further convenience all PhantomJS modules are already available in the global scope.

```javascript
phantom.run(function () {
Expand All @@ -233,7 +233,7 @@ page.run(function (resolve) {
// `this` is now a webpage instance
this.open("http://example.com", function (status) {
if (status !== "success") {
return reject(new Error("Cannot load " + url + "));
return reject(new Error("Cannot load " + url));
}
resolve();
});
Expand Down

0 comments on commit c6f76f3

Please sign in to comment.