diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4b8515a..4ac5aa51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Check spelling - uses: crate-ci/typos@v1.14.8 + uses: crate-ci/typos@v1.15.0 - name: Install cargo-sort uses: taiki-e/cache-cargo-install-action@v1 diff --git a/crates/ruma-client-api/src/backup/get_backup_info.rs b/crates/ruma-client-api/src/backup/get_backup_info.rs index 259a2efa..ad1eb76c 100644 --- a/crates/ruma-client-api/src/backup/get_backup_info.rs +++ b/crates/ruma-client-api/src/backup/get_backup_info.rs @@ -64,7 +64,7 @@ pub mod v3 { } impl Response { - /// Creates a new `Response` with the gien algorithm, key count, etag and version. + /// Creates a new `Response` with the given algorithm, key count, etag and version. pub fn new( algorithm: Raw, count: UInt, diff --git a/crates/ruma-common/src/serde/base64.rs b/crates/ruma-common/src/serde/base64.rs index df65f3ee..ffa547fd 100644 --- a/crates/ruma-common/src/serde/base64.rs +++ b/crates/ruma-common/src/serde/base64.rs @@ -63,7 +63,7 @@ impl Base64 { } impl> Base64 { - /// Create a `Base64` instance from raw bytes, to be base64-encoded in serialialization. + /// Create a `Base64` instance from raw bytes, to be base64-encoded in serialization. pub fn new(bytes: B) -> Self { Self { bytes, _phantom_conf: PhantomData } } diff --git a/crates/ruma-identity-service-api/src/association/bind_3pid.rs b/crates/ruma-identity-service-api/src/association/bind_3pid.rs index c4df7939..264fdc28 100644 --- a/crates/ruma-identity-service-api/src/association/bind_3pid.rs +++ b/crates/ruma-identity-service-api/src/association/bind_3pid.rs @@ -58,7 +58,7 @@ pub mod v2 { /// The UNIX timestamp at which the association was verified. pub ts: MilliSecondsSinceUnixEpoch, - /// The signatures of the verifiying identity servers which show that the + /// The signatures of the verifying identity servers which show that the /// association should be trusted, if you trust the verifying identity services. pub signatures: ServerSignatures, }