signatures: Add missing newlines
This commit is contained in:
parent
cc50f8b8dc
commit
4c31b83543
@ -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),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user