Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit d5109e2

Browse files
docs(CHANGELOG): minor typos and fixes
1 parent cf3c736 commit d5109e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Please read the [Sandbox Removal Blog Post](http://angularjs.blogspot.com/2016/0
8686
## Breaking Changes
8787

8888
### **jqLite** due to:
89-
- **[fc0c11](https://github.com/angular/angular.js/commit/fc0c11db845d53061430b7f05e773dcb3fb5b860))**: camelCase keys in `jqLite#data`
89+
- **[fc0c11](https://github.com/angular/angular.js/commit/fc0c11db845d53061430b7f05e773dcb3fb5b860)**: camelCase keys in `jqLite#data`
9090

9191
Previously, keys passed to the data method were left untouched.
9292
Now they are internally camelCased similarly to how jQuery handles it, i.e.
@@ -302,7 +302,7 @@ JavaScript:
302302
- **[7bc71a](https://github.com/angular/angular.js/commit/7bc71adc63bb6bb609b44dd2d3ea8fb0cd3f300b)**: treat synchronous validators as boolean always
303303

304304
Previously, only a literal `false` return would resolve as the
305-
synchronous validator failing. Now, all traditionally false JavaScript values
305+
synchronous validator failing. Now, all falsy JavaScript values
306306
are treated as failing the validator, as one would naturally expect.
307307

308308
Specifically, the values `0` (the number zero), `null`, `NaN` and `''` (the
@@ -903,7 +903,7 @@ After:
903903
```js
904904
var Foo = $resource('/foo/:id');
905905
Foo.get({id: 42, bar: 'baz', toString: 'hmm'});
906-
// URL: /foo/42?bar=baz&toString=hmm
906+
// URL: /foo/42?bar=baz&toString=hmm
907907
// Note that `toString` _is_ included in the query, as expected :)
908908
```
909909

0 commit comments

Comments
 (0)