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