From da6153349b8831be8572cb9a2b56dc55df5a22dd Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Mon, 23 Dec 2019 12:33:11 +0100 Subject: [PATCH] Update docstring for the Session Context --- packages/apputils/src/sessioncontext.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/apputils/src/sessioncontext.tsx b/packages/apputils/src/sessioncontext.tsx index 51a36579b6db..a901dfe4c970 100644 --- a/packages/apputils/src/sessioncontext.tsx +++ b/packages/apputils/src/sessioncontext.tsx @@ -242,11 +242,11 @@ export namespace ISessionContext { } /** - * The default implementation of client session object. + * The default implementation for a session context object. */ export class SessionContext implements ISessionContext { /** - * Construct a new client session. + * Construct a new session context. */ constructor(options: SessionContext.IOptions) { this.sessionManager = options.sessionManager; @@ -910,7 +910,7 @@ export class SessionContext implements ISessionContext { } /** - * A namespace for `ClientSession` statics. + * A namespace for `SessionContext` statics. */ export namespace SessionContext { /** @@ -1287,7 +1287,7 @@ namespace Private { } /** - * Get the kernel search options given a client session and sesion manager. + * Get the kernel search options given a session context. */ function getKernelSearch( sessionContext: SessionContext