signatures: Add missing newlines

This commit is contained in:
Jonas Platte 2021-05-26 13:37:20 +02:00
parent cc50f8b8dc
commit 4c31b83543
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67

View File

@ -112,14 +112,19 @@ impl JsonError {
pub enum JsonType { pub enum JsonType {
/// A JSON Object. /// A JSON Object.
Object, Object,
/// A JSON String. /// A JSON String.
String, String,
/// A JSON Integer. /// A JSON Integer.
Integer, Integer,
/// A JSON Array. /// A JSON Array.
Array, Array,
/// A JSON Boolean. /// A JSON Boolean.
Boolean, Boolean,
/// JSON Null. /// JSON Null.
Null, Null,
} }
@ -162,6 +167,7 @@ pub enum ParseError {
/// For user ID parsing errors. /// For user ID parsing errors.
#[error("Could not parse User ID: {0}")] #[error("Could not parse User ID: {0}")]
UserId(#[source] ruma_identifiers::Error), UserId(#[source] ruma_identifiers::Error),
/// For event ID parsing errors. /// For event ID parsing errors.
#[error("Could not parse Event ID: {0}")] #[error("Could not parse Event ID: {0}")]
EventId(#[source] ruma_identifiers::Error), EventId(#[source] ruma_identifiers::Error),