Skip to content

Commit

Permalink
Fix documentation typos in Adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
sutherland committed Jun 29, 2015
1 parent 051d5a7 commit cb73139
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 cb73139

Please sign in to comment.