Skip to content

Commit c1f53a7

Browse files
floriandurosJohennes
authored andcommitted
Fix tsdoc error in rust-crypto folder (matrix-org#4504)
1 parent 4a8f5ba commit c1f53a7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/rust-crypto/KeyClaimManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class KeyClaimManager {
5050
* Given a list of users, attempt to ensure that we have Olm Sessions active with each of their devices
5151
*
5252
* If we don't have an active olm session, we will claim a one-time key and start one.
53-
*
53+
* @param logger - logger to use
5454
* @param userList - list of userIDs to claim
5555
*/
5656
public ensureSessionsForUsers(logger: LogSpan, userList: Array<UserId>): Promise<void> {

src/rust-crypto/rust-crypto.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ export class RustCrypto extends TypedEventEmitter<RustCryptoEvents, CryptoEventH
757757
}
758758

759759
/**
760-
* Implementation of {@link CryptoApi#boostrapCrossSigning}
760+
* Implementation of {@link CryptoApi#bootstrapCrossSigning}
761761
*/
762762
public async bootstrapCrossSigning(opts: BootstrapCrossSigningOpts): Promise<void> {
763763
await this.crossSigningIdentity.bootstrapCrossSigning(opts);
@@ -953,7 +953,7 @@ export class RustCrypto extends TypedEventEmitter<RustCryptoEvents, CryptoEventH
953953
}
954954

955955
/**
956-
* Implementation of {@link Crypto.CryptoApi.getEncryptionInfoForEvent}.
956+
* Implementation of {@link CryptoApi#getEncryptionInfoForEvent}.
957957
*/
958958
public async getEncryptionInfoForEvent(event: MatrixEvent): Promise<EventEncryptionInfo | null> {
959959
return this.eventDecryptor.getEncryptionInfoForEvent(event);
@@ -1214,7 +1214,7 @@ export class RustCrypto extends TypedEventEmitter<RustCryptoEvents, CryptoEventH
12141214
/**
12151215
* Determine if a key backup can be trusted.
12161216
*
1217-
* Implementation of {@link Crypto.CryptoApi.isKeyBackupTrusted}.
1217+
* Implementation of {@link CryptoApi#isKeyBackupTrusted}.
12181218
*/
12191219
public async isKeyBackupTrusted(info: KeyBackupInfo): Promise<BackupTrustInfo> {
12201220
return await this.backupManager.isKeyBackupTrusted(info);
@@ -1223,7 +1223,7 @@ export class RustCrypto extends TypedEventEmitter<RustCryptoEvents, CryptoEventH
12231223
/**
12241224
* Force a re-check of the key backup and enable/disable it as appropriate.
12251225
*
1226-
* Implementation of {@link Crypto.CryptoApi.checkKeyBackupAndEnable}.
1226+
* Implementation of {@link CryptoApi#checkKeyBackupAndEnable}.
12271227
*/
12281228
public async checkKeyBackupAndEnable(): Promise<KeyBackupCheck | null> {
12291229
return await this.backupManager.checkKeyBackupAndEnable(true);

0 commit comments

Comments
 (0)