docs: Add missing dots

This commit is contained in:
Kévin Commaille 2021-04-07 12:15:37 +02:00
parent 963400979b
commit e049e45423
No known key found for this signature in database
GPG Key ID: 483BCF4C5AF1E1E5
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
//! Common types for room directory endpoints
//! Common types for room directory endpoints.
use std::fmt;

View File

@ -1,4 +1,4 @@
//! Common types for the [`m.room.power_levels` event][power_levels]
//! Common types for the [`m.room.power_levels` event][power_levels].
//!
//! [power_levels]: https://matrix.org/docs/spec/client_server/r0.6.1#m-room-power-levels

View File

@ -1,4 +1,4 @@
//! Common types for the [presence module][presence]
//! Common types for the [presence module][presence].
//!
//! [presence]: https://matrix.org/docs/spec/client_server/r0.6.1#id62

View File

@ -1,4 +1,4 @@
//! Common types for the [push notifications module][push]
//! Common types for the [push notifications module][push].
//!
//! [push]: https://matrix.org/docs/spec/client_server/r0.6.1#id89
//!

View File

@ -1,4 +1,4 @@
//! Common types for the [third party networks module][thirdparty]
//! Common types for the [third party networks module][thirdparty].
//!
//! [thirdparty]: https://matrix.org/docs/spec/client_server/r0.6.1#id153

View File

@ -4,7 +4,7 @@ use std::{convert::TryInto, fmt, num::NonZeroU8};
use crate::{crypto_algorithms::DeviceKeyAlgorithm, DeviceId, Error};
/// A key algorithm and a device id, combined with a ':'
/// A key algorithm and a device id, combined with a ':'.
#[derive(Clone)]
pub struct DeviceKeyId {
full_id: Box<str>,