From e6c9cbf0cd0f05366eeea099e4e8f1cf85b3f2f7 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Fri, 20 Nov 2015 17:08:39 -0800 Subject: [PATCH] [Persistence] Clarify JSDoc Per code review feedback, nasa/openmctweb#257 --- .../persistence/aggregator/src/PersistenceAggregator.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/platform/persistence/aggregator/src/PersistenceAggregator.js b/platform/persistence/aggregator/src/PersistenceAggregator.js index a195cd3fd5..03e32620f0 100644 --- a/platform/persistence/aggregator/src/PersistenceAggregator.js +++ b/platform/persistence/aggregator/src/PersistenceAggregator.js @@ -37,7 +37,12 @@ define( /** * Aggregates multiple persistence providers, such that they can be - * utilized as if they were a single object. + * utilized as if they were a single object. This is achieved by + * routing persistence calls to an appropriate provider; the space + * specified at call time is matched with the first provider (per + * priority order) which reports that it provides persistence this + * space. + * * @memberof platform/persistence/aggregator * @constructor * @implements {PersistenceService}