Rewrap doc comments

master
Jonas Platte 2021-09-08 20:19:07 +02:00
parent 67912f3768
commit 3c38b26770
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67
2 changed files with 4 additions and 4 deletions

View File

@ -50,8 +50,8 @@ pub trait SyncEvent {
/// specifically: /// specifically:
/// ///
/// * They must have at least one argument, which is the event itself, a type /// * They must have at least one argument, which is the event itself, a type
/// that implements [`SyncEvent`]. Any additional arguments need to /// that implements [`SyncEvent`]. Any additional arguments need to implement
/// implement the [`EventHandlerContext`] trait. /// the [`EventHandlerContext`] trait.
/// * Their return type has to be one of: `()`, `Result<(), impl /// * Their return type has to be one of: `()`, `Result<(), impl
/// std::error::Error>` or `anyhow::Result<()>` (requires the `anyhow` Cargo /// std::error::Error>` or `anyhow::Result<()>` (requires the `anyhow` Cargo
/// feature to be enabled) /// feature to be enabled)

View File

@ -39,8 +39,8 @@
//! The following crate feature flags are available: //! The following crate feature flags are available:
//! //!
//! * `encryption`: Enables end-to-end encryption support in the library. //! * `encryption`: Enables end-to-end encryption support in the library.
//! * `sled_cryptostore`: Enables a Sled based store for the encryption keys. //! * `sled_cryptostore`: Enables a Sled based store for the encryption keys. If
//! If this is disabled and `encryption` support is enabled the keys will by //! 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 //! default be stored only in memory and thus lost after the client is
//! destroyed. //! destroyed.
//! * `markdown`: Support for sending markdown formatted messages. //! * `markdown`: Support for sending markdown formatted messages.