File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ app.use(store.initializeMiddleware());
146146
147147Check if the store has been initialized or not.
148148
149- - ` @params {boolean} ` - Returns either true or false.
149+ - ` @returns {boolean} ` - Returns either true or false.
150150
151151``` js
152152if (store .isInitialized ()) {
@@ -189,9 +189,10 @@ const foo = store.find('foo');
189189
190190### getId()
191191
192- Gets the unique domain id created for the current context/scope.
192+ Gets the unique store id created for the current context/scope.
193+ Example: If used in express, it returns unique store id per request.
193194
194- - ` @returns {string | undefined} ` - Returns the unique domain id.
195+ - ` @returns {string | undefined} ` - Returns the unique store id.
195196
196197``` js
197198const requestIdentifier = store .getId ();
You can’t perform that action at this time.
0 commit comments