Skip to content

Commit

Permalink
Fixed a couple typos
Browse files Browse the repository at this point in the history
  • Loading branch information
soddarkangel committed Jul 30, 2014
1 parent ec4e927 commit 43b019d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ Many of my styles have been from the many pair programming sessions [Ward Bell](
*Why?*: This is especially helpful when the file gets longer as it helps avoid the need to scroll to see what is exposed.
*Why?*: Setting functions as you go can be easy, but when those functions are more than 1 line of code they can reduce the readability and cause more scrolling. Defining the callable interface via the returned service moves moves the implementation details down, keeps the callable interface up top, and makes it easier to read.
*Why?*: Setting functions as you go can be easy, but when those functions are more than 1 line of code they can reduce the readability and cause more scrolling. Defining the callable interface via the returned service moves the implementation details down, keeps the callable interface up top, and makes it easier to read.
```javascript
Expand Down Expand Up @@ -783,11 +783,11 @@ TODO
- **$document and $window**: Use `$document` and `$window` instead of `document` and `window`.
*Why?*: These services are wrapped by Angular and more easily testable than using document and window in tests. This help syou avoid having to mock document and window yourself.
*Why?*: These services are wrapped by Angular and more easily testable than using document and window in tests. This helps you avoid having to mock document and window yourself.
- **$timeout and $interval**: Use `$timeout` and `$interval` instead of `setTimeout` and `setInterval` .
*Why?*: These services are wrapped by Angular and more easily testable and handle AngularJS's digest cycle thus keeping data binding in synch.
*Why?*: These services are wrapped by Angular and more easily testable and handle AngularJS's digest cycle thus keeping data binding in sync.
**[Back to top](#table-of-contents)**
Expand Down

0 comments on commit 43b019d

Please sign in to comment.