From e0c552d25e5e2ec9bbac0705ebf138350ca755f7 Mon Sep 17 00:00:00 2001 From: pangratz Date: Thu, 17 Dec 2015 15:40:56 +0100 Subject: [PATCH] [DOC beta] Mark comments as private Otherwise YUIDoc complains that those methods don't have an item type. --- addon/-private/system/model/internal-model.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/addon/-private/system/model/internal-model.js b/addon/-private/system/model/internal-model.js index d048d4bf011..944e93635dc 100644 --- a/addon/-private/system/model/internal-model.js +++ b/addon/-private/system/model/internal-model.js @@ -303,6 +303,8 @@ InternalModel.prototype = { This method is needed when data for the internal model is pushed and the pushed data might acknowledge dirty attributes as confirmed. + + @private */ updateChangedAttributes() { var changedAttributes = this.changedAttributes(); @@ -321,6 +323,8 @@ InternalModel.prototype = { /** Returns an object, whose keys are changed properties, and value is an [oldProp, newProp] array. + + @private */ changedAttributes() { var oldData = this._data;