From cb73139b480f25fd796c0332d3f0fc9a21a65ed1 Mon Sep 17 00:00:00 2001 From: Jonathan Sutherland Date: Mon, 29 Jun 2015 10:45:49 -0400 Subject: [PATCH] Fix documentation typos in Adapter --- packages/ember-data/lib/system/adapter.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/ember-data/lib/system/adapter.js b/packages/ember-data/lib/system/adapter.js index a371a1da0e2..ee66cdd9806 100644 --- a/packages/ember-data/lib/system/adapter.js +++ b/packages/ember-data/lib/system/adapter.js @@ -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 @@ -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}