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

Fix typos in client.ts #4715

Merged
merged 1 commit into from
Feb 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ export interface IStartClientOpts {
/**
* Controls where pending messages appear in a room's timeline. If "<b>chronological</b>", messages will
* appear in the timeline when the call to `sendEvent` was made. If "<b>detached</b>",
* pending messages will appear in a separate list, accessbile via {@link Room#getPendingEvents}.
* pending messages will appear in a separate list, accessible via {@link Room#getPendingEvents}.
* Default: "chronological".
*/
pendingEventOrdering?: PendingEventOrdering;
Expand Down Expand Up @@ -1094,7 +1094,7 @@ export type ClientEventHandlerMap = {
* decryptable, unlike Megolm encrypted events where the key may simply
* arrive later.
*
* An undecryptable to-device event is therefore likley to indicate problems.
* An undecryptable to-device event is therefore likely to indicate problems.
*
* @param event - The undecyptable to-device event
*/
Expand Down Expand Up @@ -6854,7 +6854,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
}

/**
* Fetch a user's *extended* profile, which may include additonal keys.
* Fetch a user's *extended* profile, which may include additional keys.
*
* @see https://github.com/tcpipuk/matrix-spec-proposals/blob/main/proposals/4133-extended-profiles.md
* @param userId The user ID to fetch the profile of.
Expand Down Expand Up @@ -6910,7 +6910,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
*
* @see https://github.com/tcpipuk/matrix-spec-proposals/blob/main/proposals/4133-extended-profiles.md
* @param key The key of the property to set.
* @param value The value to set on the propety.
* @param value The value to set on the property.
*
* @throws An error if the server does not support MSC4133 OR the server disallows editing the user profile.
*/
Expand Down Expand Up @@ -7605,7 +7605,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
* @param sid - The sid given in the response to requestToken
* @param clientSecret - A secret binary string generated by the client.
* This must be the same value submitted in the requestToken call.
* @param msisdnToken - The MSISDN token, as enetered by the user.
* @param msisdnToken - The MSISDN token, as entered by the user.
* @param identityAccessToken - The `access_token` field of the Identity
* Server `/account/register` response (see {@link registerWithIdentityServer}).
* Some legacy identity servers had no authentication here.
Expand Down Expand Up @@ -7648,7 +7648,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
* @param sid - The sid given in the response to requestToken
* @param clientSecret - A secret binary string generated by the client.
* This must be the same value submitted in the requestToken call.
* @param msisdnToken - The MSISDN token, as enetered by the user.
* @param msisdnToken - The MSISDN token, as entered by the user.
*
* @returns Promise which resolves: Object, containing success boolean.
* @returns Rejects: with an error response.
Expand Down
Loading