summaryrefslogtreecommitdiff
path: root/src/routers/vault/types/SessionStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/routers/vault/types/SessionStore.js')
-rw-r--r--src/routers/vault/types/SessionStore.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routers/vault/types/SessionStore.js b/src/routers/vault/types/SessionStore.js
index daa71c3..2657551 100644
--- a/src/routers/vault/types/SessionStore.js
+++ b/src/routers/vault/types/SessionStore.js
@@ -3,7 +3,7 @@ const Session = require("./Session.js");
/**
* we store the timeout directly in Session instances
- * @type Symbol("session timeout")
+ * @type {Symbol("session timeout")}
*/
const timeout_symbol = Symbol("session timeout");
@@ -13,7 +13,7 @@ const timeout_symbol = Symbol("session timeout");
class SessionStore {
/**
* a Map of all Session instances
- * @type Map<string, Session>
+ * @type {Map<string, Session>}
*/
sessions = new Map();
/** lifetime of an unauthenticated Session, in minutes */