Skip to content

Commit

Permalink
Merge pull request #4741 from bmac/yuidoc-cleanup
Browse files Browse the repository at this point in the history
Clean up some YUIdoc erros
  • Loading branch information
pangratz authored Jan 9, 2017
2 parents a3b1a16 + de61899 commit 99b4b22
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions addon/-private/system/record-arrays/record-array.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,17 +233,17 @@ export default Ember.ArrayProxy.extend(Ember.Evented, {
this._super(...arguments);
},

/**
r @method _createSnapshot
/*
@method _createSnapshot
@private
*/
_createSnapshot(options) {
// this is private for users, but public for ember-data internals
return new SnapshotRecordArray(this, this.get('meta'), options);
},

/**
r @method _takeSnapshot
/*
@method _takeSnapshot
@private
*/
_takeSnapshot() {
Expand Down
4 changes: 2 additions & 2 deletions addon/-private/system/references/record.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ RecordReference.prototype.remoteType = function() {
});
```
@method
@method push
@param {Promise|Object}
@returns Promise<record> a promise for the value (record or relationship)
@return Promise<record> a promise for the value (record or relationship)
*/
RecordReference.prototype.push = function(objectOrPromise) {
return Ember.RSVP.resolve(objectOrPromise).then((data) => {
Expand Down

0 comments on commit 99b4b22

Please sign in to comment.