matrix-sdk: Fix a bunch of typos

master
Damir Jelić 2021-05-31 09:35:19 +02:00
parent 3c9f929598
commit 10b38ce44e
6 changed files with 10 additions and 7 deletions

View File

@ -2000,7 +2000,7 @@ impl Client {
#[cfg(feature = "encryption")] #[cfg(feature = "encryption")]
{ {
// This is needed because sometimes we need to automatically // This is needed because sometimes we need to automatically
// claim some one-time keys to unwedge an exisitng Olm session. // claim some one-time keys to unwedge an existing Olm session.
if let Err(e) = self.claim_one_time_keys([].iter()).await { if let Err(e) = self.claim_one_time_keys([].iter()).await {
warn!("Error while claiming one-time keys {:?}", e); warn!("Error while claiming one-time keys {:?}", e);
} }
@ -2562,7 +2562,10 @@ mod test {
.create(); .create();
if Client::new_from_user_id(alice).await.is_ok() { if Client::new_from_user_id(alice).await.is_ok() {
panic!("Creating a client from a user ID should fail when the .well-known server returns no version infromation."); panic!(
"Creating a client from a user ID should fail when the \
.well-known server returns no version information."
);
} }
} }

View File

@ -122,7 +122,7 @@ pub enum Error {
#[error(transparent)] #[error(transparent)]
CryptoStoreError(#[from] CryptoStoreError), CryptoStoreError(#[from] CryptoStoreError),
/// An error occured in the state store. /// An error occurred in the state store.
#[error(transparent)] #[error(transparent)]
StateStore(#[from] StoreError), StateStore(#[from] StoreError),

View File

@ -18,7 +18,7 @@ use matrix_sdk_base::crypto::{
use crate::{error::Result, Client}; use crate::{error::Result, Client};
/// An object controling the interactive verification flow. /// An object controlling the interactive verification flow.
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub struct Sas { pub struct Sas {
pub(crate) inner: BaseSas, pub(crate) inner: BaseSas,

View File

@ -18,7 +18,7 @@ use matrix_sdk_base::{
use crate::{room::Joined, Result}; use crate::{room::Joined, Result};
/// An object controling the interactive verification flow. /// An object controlling the interactive verification flow.
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub struct VerificationRequest { pub struct VerificationRequest {
pub(crate) inner: BaseVerificationRequest, pub(crate) inner: BaseVerificationRequest,

View File

@ -486,7 +486,7 @@ pub struct RoomInfo {
pub summary: RoomSummary, pub summary: RoomSummary,
/// Flag remembering if the room members are synced. /// Flag remembering if the room members are synced.
pub members_synced: bool, pub members_synced: bool,
/// The prev batch of this room we received durring the last sync. /// The prev batch of this room we received during the last sync.
pub last_prev_batch: Option<String>, pub last_prev_batch: Option<String>,
/// Base room info which holds some basic event contents important for the /// Base room info which holds some basic event contents important for the
/// room state. /// room state.

View File

@ -364,7 +364,7 @@ impl EventBuilder {
} }
} }
/// Embedded sync reponse files /// Embedded sync response files
pub enum SyncResponseFile { pub enum SyncResponseFile {
All, All,
Default, Default,