core-api: more text fixes

This commit is contained in:
Patrik Oldsberg
2020-11-02 16:32:31 +01:00
parent 5de4914f54
commit 3c8ad0a06a
2 changed files with 3 additions and 3 deletions
@@ -99,7 +99,7 @@ export type PendingAuthRequest = {
export type OAuthRequestApi = {
/**
* A utility for showing login popups or similar things, and merging together multiple requests for
* different scopes into one request that inclues all scopes.
* different scopes into one request that includes all scopes.
*
* The passed in options provide information about the login provider, and how to handle auth requests.
*
@@ -114,7 +114,7 @@ export type OAuthRequestApi = {
): AuthRequester<AuthResponse>;
/**
* Observers panding auth requests. The returned observable will emit all
* Observers pending auth requests. The returned observable will emit all
* current active auth request, at most one for each created auth requester.
*
* Each request has its own info about the login provider, forwarded from the auth requester options.
@@ -52,7 +52,7 @@ export interface StorageApi {
remove(key: string): Promise<void>;
/**
* Save persistant data, and emit messages to anyone that is using observe$ for this key
* Save persistent data, and emit messages to anyone that is using observe$ for this key
*
* @param {String} key Unique key associated with the data.
*/