Skip to content

Commit 0efeac9

Browse files
authored
typos in client.ts (#4715)
Pulled out from #4713
1 parent f11e191 commit 0efeac9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/client.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ export interface IStartClientOpts {
477477
/**
478478
* Controls where pending messages appear in a room's timeline. If "<b>chronological</b>", messages will
479479
* appear in the timeline when the call to `sendEvent` was made. If "<b>detached</b>",
480-
* pending messages will appear in a separate list, accessbile via {@link Room#getPendingEvents}.
480+
* pending messages will appear in a separate list, accessible via {@link Room#getPendingEvents}.
481481
* Default: "chronological".
482482
*/
483483
pendingEventOrdering?: PendingEventOrdering;
@@ -1094,7 +1094,7 @@ export type ClientEventHandlerMap = {
10941094
* decryptable, unlike Megolm encrypted events where the key may simply
10951095
* arrive later.
10961096
*
1097-
* An undecryptable to-device event is therefore likley to indicate problems.
1097+
* An undecryptable to-device event is therefore likely to indicate problems.
10981098
*
10991099
* @param event - The undecyptable to-device event
11001100
*/
@@ -6854,7 +6854,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
68546854
}
68556855

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

0 commit comments

Comments
 (0)