From 150fda64fba4e7d1e00e396133e2417b21edd0bf Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Wed, 20 Nov 2024 16:13:50 +0100 Subject: [PATCH] doc(common): Fix a typo. --- crates/matrix-sdk-common/src/linked_chunk/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/matrix-sdk-common/src/linked_chunk/mod.rs b/crates/matrix-sdk-common/src/linked_chunk/mod.rs index a250cbab4d6..479474c83e1 100644 --- a/crates/matrix-sdk-common/src/linked_chunk/mod.rs +++ b/crates/matrix-sdk-common/src/linked_chunk/mod.rs @@ -872,12 +872,12 @@ impl Drop for LinkedChunk { } /// A [`LinkedChunk`] can be safely sent over thread boundaries if `Item: Send` -/// and `Gap: Send`. The only unsafe part if around the `NonNull`, but the API +/// and `Gap: Send`. The only unsafe part is around the `NonNull`, but the API /// and the lifetimes to deref them are designed safely. unsafe impl Send for LinkedChunk {} /// A [`LinkedChunk`] can be safely share between threads if `Item: Sync` and -/// `Gap: Sync`. The only unsafe part if around the `NonNull`, but the API and +/// `Gap: Sync`. The only unsafe part is around the `NonNull`, but the API and /// the lifetimes to deref them are designed safely. unsafe impl Sync for LinkedChunk {}