Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit 42d6d43

Browse files
tjgrathwellFoxandxss
authored andcommittedFeb 6, 2014
docs(readme): fix typos in readme and contributing guidelines
Closes #1762
1 parent a6a1049 commit 42d6d43

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

‎CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
We are always looking for the quality contributions and will be happy to accept your Pull Requests as long as those adhere to some basic rules:
22

33
* Please make sure that your contribution fits well in the project's context:
4-
* we are aiming at rebuilding boostrap directives in pure AngularJS, without any dependencies on any external JavaScript library;
5-
* the only dependency should be boostrap CSS and its markup structure;
4+
* we are aiming at rebuilding bootstrap directives in pure AngularJS, without any dependencies on any external JavaScript library;
5+
* the only dependency should be bootstrap CSS and its markup structure;
66
* directives should be html-agnostic as much as possible which in practice means:
77
* templates should be referred to using the `templateUrl` property
88
* it should be easy to change a default template to a custom one

‎README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Modern mobile browsers should work without problems.
4040

4141
**IE 8 is not officially supported at the moment**. This project is run by volunteers and with the current number of commiters
4242
we are not in the position to guarantee IE8 support. If you need support for IE8 we would welcome a contributor who would like to take care about IE8.
43-
Alternativelly you could sponsor this project to guarantee IE8 support.
43+
Alternatively you could sponsor this project to guarantee IE8 support.
4444

4545
We believe that most of the directives would work OK after:
4646
* including relevant shims (for ES5 we recommend https://github.com/kriskowal/es5-shim)
@@ -57,7 +57,7 @@ It is often better to rewrite an existing JavaScript code and create a new, pure
5757

5858
### Customizability
5959

60-
All the directives in this repository should have their markup externalized as templates (loaded via `templateUrl`). In practice it means that you can **customize directive's markup at will**. One could even imagine providing a non-Boostrap version of the templates!
60+
All the directives in this repository should have their markup externalized as templates (loaded via `templateUrl`). In practice it means that you can **customize directive's markup at will**. One could even imagine providing a non-Bootstrap version of the templates!
6161

6262
### Take what you need and not more
6363

@@ -86,14 +86,14 @@ We are always looking for the quality contributions! Please check the [CONTRIBUT
8686
#### Prepare your environment
8787
* Install [Node.js](http://nodejs.org/) and NPM (should come with)
8888
* Install global dev dependencies: `npm install -g grunt-cli karma`
89-
* Instal local dev dependencies: `npm install` while current directory is bootstrap repo
89+
* Install local dev dependencies: `npm install` while current directory is bootstrap repo
9090

9191
#### Build
9292
* Build the whole project: `grunt` - this will run `lint`, `test`, and `concat` targets
9393
* To build modules, first run `grunt html2js` then `grunt build:module1:module2...:moduleN`
9494

9595
You can generate a custom build, containing only needed modules, from the project's homepage.
96-
Alternativelly you can run local Grunt build from the command line and list needed modules as shown below:
96+
Alternatively you can run local Grunt build from the command line and list needed modules as shown below:
9797

9898
```
9999
grunt build:modal:tabs:alert:popover:dropdownToggle:buttons:progressbar
@@ -104,7 +104,7 @@ Check the Grunt build file for other tasks that are defined for this project.
104104
#### TDD
105105
* Run test: `grunt watch`
106106

107-
This will start Karma server and will continously watch files in the project, executing tests upon every change.
107+
This will start Karma server and will continuously watch files in the project, executing tests upon every change.
108108

109109
#### Test coverage
110110
Add the `--coverage` option (e.g. `grunt test --coverage`, `grunt watch --coverage`) to see reports on the test coverage. These coverage reports are found in the coverage folder.

0 commit comments

Comments
 (0)
This repository has been archived.