Remove extraneous newlines

This commit is contained in:
Jonas Platte 2021-08-05 13:10:27 +02:00
parent c6c89596bb
commit 020da913de
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67
5 changed files with 0 additions and 6 deletions

View File

@ -28,7 +28,6 @@ ruma_api! {
/// provided here to save that extra call.
#[serde(rename = "m.read", skip_serializing_if = "Option::is_none")]
pub read_receipt: Option<&'a EventId>,
}
#[derive(Default)]

View File

@ -10,7 +10,6 @@ ruma_api! {
path: "/_matrix/client/r0/login/sso/redirect",
rate_limited: false,
authentication: None,
}
request: {

View File

@ -48,7 +48,6 @@ ruma_api! {
/// association should be trusted, if you trust the verifying identity services.
pub signatures: ServerSignatures,
}
}
impl<'a> Request<'a> {

View File

@ -22,7 +22,6 @@ ruma_api! {
/// The client secret passed to the `requestToken` call.
#[ruma_api(query)]
pub client_secret: &'a str,
}
response: {
@ -35,7 +34,6 @@ ruma_api! {
/// Timestamp, in milliseconds, indicating the time that the 3PID was validated.
pub validated_at: UInt,
}
}
impl<'a> Request<'a> {

View File

@ -34,7 +34,6 @@ impl StateResolution {
auth_events: Vec<Vec<EventId>>,
event_map: &mut EventMap<Arc<E>>,
) -> Result<StateMap<EventId>> {;
}
```