@@ -21,7 +21,7 @@ which drives many of these changes.
2121
2222You can no longer invoke .bind, .call or .apply on a function in angular expressions.
2323This is to disallow changing the behaviour of existing functions
24- in an unforseen fashion.
24+ in an unforeseen fashion.
2525
2626 - due to [6081f207](https://github.com/angular/angular.js/commit/6081f20769e64a800ee8075c168412b21f026d99),
2727
@@ -877,7 +877,7 @@ of `$sce.trustAsHtml(string)`. When bound to a plain string, the string is sanit
877877module is not loaded) and the bound expression evaluates to a value that is not trusted an
878878exception is thrown.
879879
880- When using this directive you can either include `ngSanitize` in your module's dependencis (See the
880+ When using this directive you can either include `ngSanitize` in your module's dependencies (See the
881881example at the {@link ngBindHtml} reference) or use the {@link $sce} service to set the value as
882882trusted.
883883
@@ -1134,10 +1134,10 @@ freely available to JavaScript code (as before).
11341134
11351135Angular expressions execute in a limited context. They do not have
11361136direct access to the global scope, `window`, `document` or the Function
1137- constructor. However, they have direct access to names/properties on
1138- the scope chain. It has been a long standing best practice to keep
1137+ constructor. However, they have direct access to names/properties on
1138+ the scope chain. It has been a long standing best practice to keep
11391139sensitive APIs outside of the scope chain (in a closure or your
1140- controller.) That's easier said that done for two reasons:
1140+ controller.) That's easier said than done for two reasons:
11411141
114211421. JavaScript does not have a notion of private properties so if you need
11431143someone on the scope chain for JavaScript use, you also expose it to
0 commit comments