Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docstring for the Session Context #7682

Merged
merged 1 commit into from Dec 23, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/apputils/src/sessioncontext.tsx
Expand Up @@ -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;
Expand Down Expand Up @@ -910,7 +910,7 @@ export class SessionContext implements ISessionContext {
}

/**
* A namespace for `ClientSession` statics.
* A namespace for `SessionContext` statics.
*/
export namespace SessionContext {
/**
Expand Down Expand Up @@ -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
Expand Down