@@ -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