Skip to content

Commit

Permalink
[DOC] Reference to EmberObject always without dot
Browse files Browse the repository at this point in the history
  • Loading branch information
spruce authored and igorT committed Nov 2, 2018
1 parent bcccd0b commit c466ae8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1982,7 +1982,7 @@ var Post = DS.Model.extend({
```

**no longer works**. Instead, you should just watch each attribute like you
would with any `Ember.Object`:
would with any `EmberObject`:

```javascript
var Post = DS.Model.extend({
Expand Down
2 changes: 1 addition & 1 deletion addon/-private/system/many-array.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import diffArray from './diff-array';
@class ManyArray
@namespace DS
@extends Ember.Object
@extends EmberObject
@uses Ember.MutableArray, Ember.Evented
*/
export default EmberObject.extend(MutableArray, Evented, {
Expand Down
2 changes: 1 addition & 1 deletion addon/-private/system/model/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const retrieveFromCurrentState = computed('currentState', function(key) {
@class Model
@namespace DS
@extends Ember.Object
@extends EmberObject
@uses Ember.Evented
*/
const Model = EmberObject.extend(Evented, {
Expand Down
2 changes: 1 addition & 1 deletion addon/-private/system/promise-proxies.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const PromiseArray = ArrayProxy.extend(PromiseProxyMixin, {
});

/**
A `PromiseObject` is an object that acts like both an `Ember.Object`
A `PromiseObject` is an object that acts like both an `EmberObject`
and a promise. When the promise is resolved, then the resulting value
will be set to the `PromiseObject`'s `content` property. This makes
it easy to create data bindings with the `PromiseObject` that will
Expand Down
2 changes: 1 addition & 1 deletion addon/serializer.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import EmberObject from '@ember/object';
@class Serializer
@namespace DS
@extends Ember.Object
@extends EmberObject
*/

export default EmberObject.extend({
Expand Down

0 comments on commit c466ae8

Please sign in to comment.