From 3c38b26770cf3c9b059454d78841c56df3b81be1 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 8 Sep 2021 20:19:07 +0200 Subject: [PATCH] Rewrap doc comments --- matrix_sdk/src/event_handler.rs | 4 ++-- matrix_sdk/src/lib.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/matrix_sdk/src/event_handler.rs b/matrix_sdk/src/event_handler.rs index b40b34d4..46ab5ca8 100644 --- a/matrix_sdk/src/event_handler.rs +++ b/matrix_sdk/src/event_handler.rs @@ -50,8 +50,8 @@ pub trait SyncEvent { /// specifically: /// /// * They must have at least one argument, which is the event itself, a type -/// that implements [`SyncEvent`]. Any additional arguments need to -/// implement the [`EventHandlerContext`] trait. +/// that implements [`SyncEvent`]. Any additional arguments need to implement +/// the [`EventHandlerContext`] trait. /// * Their return type has to be one of: `()`, `Result<(), impl /// std::error::Error>` or `anyhow::Result<()>` (requires the `anyhow` Cargo /// feature to be enabled) diff --git a/matrix_sdk/src/lib.rs b/matrix_sdk/src/lib.rs index 2897a6d2..92dffbe1 100644 --- a/matrix_sdk/src/lib.rs +++ b/matrix_sdk/src/lib.rs @@ -39,8 +39,8 @@ //! The following crate feature flags are available: //! //! * `encryption`: Enables end-to-end encryption support in the library. -//! * `sled_cryptostore`: Enables a Sled based store for the encryption keys. -//! If this is disabled and `encryption` support is enabled the keys will by +//! * `sled_cryptostore`: Enables a Sled based store for the encryption keys. If +//! this is disabled and `encryption` support is enabled the keys will by //! default be stored only in memory and thus lost after the client is //! destroyed. //! * `markdown`: Support for sending markdown formatted messages.