Skip to content

Commit 57c5295

Browse files
committed
Merge pull request #2 from dvjones89/fix-readme-typos
Thanks for the fixes!
2 parents 23ecfb2 + 366e583 commit 57c5295

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class App.Users extends App.Base
6464

6565
### Controller Specific JavaScript
6666

67-
Executing some JavaScript to run on all controller actions is just a matter of adding it to the class contstructor. In the below example we will change the background color of the page for all actions in ```UsersController```.
67+
Executing some JavaScript to run on all controller actions is just a matter of adding it to the class constructor. In the below example we will change the background color of the page for all actions in ```UsersController```.
6868

6969
```
7070
# app/assets/javascripts/users.js.coffee
@@ -102,7 +102,7 @@ class App.Base
102102
)
103103
```
104104

105-
In this example we extracted the rollover action into a new function. Doing so will make the class cleaner and easier to maintain as the application grows. Once again note the ```return this``` in the contructor.
105+
In this example we extracted the rollover action into a new function. Doing so will make the class cleaner and easier to maintain as the application grows. Once again note the ```return this``` in the constructor.
106106

107107

108108
### Utilities
@@ -170,7 +170,7 @@ class App.Users extends App.Base
170170

171171
### Elements
172172

173-
An ```Element``` is a class that describes the funcionality of a one off element in the applicattion. A Main Menu is a good example of this since there is usually only a single Main Menu.
173+
An ```Element``` is a class that describes the functionality of a one off element in the application. A Main Menu is a good example of this since there is usually only a single Main Menu.
174174

175175
First generate the ```Element```
176176

0 commit comments

Comments
 (0)