Skip to content

Commit

Permalink
Merge pull request #3462 from sutherland/fix-doc-typos-in-adapter
Browse files Browse the repository at this point in the history
Fix documentation typos in Adapter
  • Loading branch information
bmac committed Jun 29, 2015
2 parents 051d5a7 + cb73139 commit 0148b13
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/ember-data/lib/system/adapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -454,8 +454,8 @@ var Adapter = Ember.Object.extend({
reload a record from the adapter when a record is requested by
`store.findRecord`.
If this method returns true the store will re fetch a record from
the adapter. If is method returns false the store will resolve
If this method returns true, the store will re-fetch a record from
the adapter. If this method returns false, the store will resolve
immediately using the cached record.
@method shouldReloadRecord
Expand All @@ -472,11 +472,11 @@ var Adapter = Ember.Object.extend({
reload all records from the adapter when records are requested by
`store.findAll`.
If this method returns true the store will re fetch all records from
the adapter. If is method returns false the store will resolve
If this method returns true, the store will re-fetch all records from
the adapter. If this method returns false, the store will resolve
immediately using the cached record.
@method shouldReloadRecord
@method shouldReloadAll
@param {DS.Store} store
@param {DS.SnapshotRecordArray} snapshotRecordArray
@return {Boolean}
Expand Down

0 comments on commit 0148b13

Please sign in to comment.