Skip to content

Commit

Permalink
yuidoc clenaup
Browse files Browse the repository at this point in the history
  • Loading branch information
runspired committed Aug 17, 2018
1 parent a1ce0e9 commit d920064
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export default class BelongsToRelationship extends Relationship {
* true if there is no inverse
* false if the inverse exists and is not loaded (empty)
*
* @returns {boolean}
* @property
* @return {boolean}
*/
get allInverseRecordsAreLoaded() {
let internalModel = this.inverseInternalModel;
Expand Down
3 changes: 2 additions & 1 deletion addon/-legacy-private/system/relationships/state/has-many.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ export default class ManyRelationship extends Relationship {
* true if there are no inverse records
* false if the inverse records exist and any are not loaded (any empty)
*
* @returns {boolean}
* @property
* @return {boolean}
*/
get allInverseRecordsAreLoaded() {
// check currentState for unloaded records
Expand Down
4 changes: 2 additions & 2 deletions addon/-legacy-private/system/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -3125,11 +3125,11 @@ function isInverseRelationshipInitialized(store, internalModel, data, key, model
}

/**
*
* @function
* @param store
* @param cache modelFactoryCache
* @param normalizedModelName already normalized modelName
* @returns {*}
* @return {*}
*/
function getModelFactory(store, cache, normalizedModelName) {
let factory = cache[normalizedModelName];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export default class BelongsToRelationship extends Relationship {
* true if there is no inverse
* false if the inverse exists and is not loaded (empty)
*
* @returns {boolean}
* @return {boolean}
*/
get allInverseRecordsAreLoaded() {
let modelData = this.inverseModelData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export default class ManyRelationship extends Relationship {
* true if there are no inverse records
* false if the inverse records exist and any are not loaded (any empty)
*
* @returns {boolean}
* @return {boolean}
*/
get allInverseRecordsAreLoaded() {
// check currentState for unloaded records
Expand Down
2 changes: 1 addition & 1 deletion addon/-record-data-private/system/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -3313,7 +3313,7 @@ function _commit(adapter, store, operation, snapshot) {
* @param store
* @param cache modelFactoryCache
* @param normalizedModelName already normalized modelName
* @returns {*}
* @return {*}
*/
function getModelFactory(store, cache, normalizedModelName) {
let factory = cache[normalizedModelName];
Expand Down

0 comments on commit d920064

Please sign in to comment.