Skip to content

Commit 3d77c2e

Browse files
committed
README: various text fixes
Thank you @essamjoubori, @bcbcb, @namlede Ref 31b63fc
1 parent a4e31a8 commit 3d77c2e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ cd jquery && npm run build
4747
```
4848
The built version of jQuery will be put in the `dist/` subdirectory, along with the minified copy and associated map file.
4949

50-
If you want create custom build or help with jQuery development, it would be better to install [grunt command line interface](https://github.com/gruntjs/grunt-cli) as a global package:
50+
If you want to create custom build or help with jQuery development, it would be better to install [grunt command line interface](https://github.com/gruntjs/grunt-cli) as a global package:
5151

5252
```
5353
npm install -g grunt-cli
@@ -57,7 +57,7 @@ Make sure you have `grunt` installed by testing:
5757
grunt -V
5858
```
5959

60-
Now by running the `grunt` command, in the jquery directory, you can build a full version of jQuery, just like with a `npm run build` command:
60+
Now by running the `grunt` command, in the jquery directory, you can build a full version of jQuery, just like with an `npm run build` command:
6161
```
6262
grunt
6363
```
@@ -209,7 +209,7 @@ As the source code is handled by the Git version control system, it's useful to
209209

210210
### Cleaning ###
211211

212-
If you want to purge your working directory back to the status of upstream, following commands can be used (remember everything you've worked on is gone after these):
212+
If you want to purge your working directory back to the status of upstream, the following commands can be used (remember everything you've worked on is gone after these):
213213

214214
```bash
215215
git reset --hard upstream/master
@@ -218,7 +218,7 @@ git clean -fdx
218218

219219
### Rebasing ###
220220

221-
For feature/topic branches, you should always use the `--rebase` flag to `git pull`, or if you are usually handling many temporary "to be in a github pull request" branches, run following to automate this:
221+
For feature/topic branches, you should always use the `--rebase` flag to `git pull`, or if you are usually handling many temporary "to be in a github pull request" branches, run the following to automate this:
222222

223223
```bash
224224
git config branch.autosetuprebase local
@@ -230,7 +230,7 @@ git config branch.autosetuprebase local
230230
If you're getting merge conflicts when merging, instead of editing the conflicted files manually, you can use the feature
231231
`git mergetool`. Even though the default tool `xxdiff` looks awful/old, it's rather useful.
232232

233-
Following are some commands that can be used there:
233+
The following are some commands that can be used there:
234234

235235
* `Ctrl + Alt + M` - automerge as much as possible
236236
* `b` - jump to next merge conflict
@@ -354,7 +354,7 @@ callback( jQueryFromIFrame, iFrameWindow, iFrameDocument );
354354
Loads a given page constructing a url with fileName: `"./data/" + fileName + ".html"`
355355
The given callback is fired when window.iframeCallback is called by the page.
356356
The arguments passed to the callback are the same as the
357-
arguments passed to window.iframeCallback, whatever that may be
357+
arguments passed to window.iframeCallback, whatever that may be.
358358

359359
```js
360360
testIframeWithCallback( testName, fileName, callback );

test/unit/support.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ testIframeWithCallback( "A background on the testElement does not cause IE8 to c
4747
});
4848

4949

50-
// This test checkes CSP only for browsers with "Content-Security-Policy" header support
50+
// This test checks CSP only for browsers with "Content-Security-Policy" header support
5151
// i.e. no old WebKit or old Firefox
5252
testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Security/CSP) restrictions",
5353
"support/csp.php",

0 commit comments

Comments
 (0)