mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-08-01 17:38:36 +00:00
ci: check for typos
This commit is contained in:
parent
063d13a0e1
commit
2dce87546a
20 changed files with 50 additions and 32 deletions
|
@ -64,7 +64,7 @@ pub async fn ping_appservice_route(
|
|||
}
|
||||
Error::BadServerResponse(_) => Error::BadRequest(
|
||||
ErrorKind::ConnectionFailed,
|
||||
"Recieved invalid response from appservice",
|
||||
"Received invalid response from appservice",
|
||||
),
|
||||
e => e,
|
||||
})
|
||||
|
|
|
@ -6,7 +6,7 @@ use std::collections::BTreeMap;
|
|||
|
||||
/// # `GET /_matrix/client/r0/capabilities`
|
||||
///
|
||||
/// Get information on the supported feature set and other relevent capabilities of this server.
|
||||
/// Get information on the supported feature set and other relevant capabilities of this server.
|
||||
pub async fn get_capabilities_route(
|
||||
_body: Ruma<get_capabilities::v3::Request>,
|
||||
) -> Result<get_capabilities::v3::Response> {
|
||||
|
|
|
@ -507,7 +507,7 @@ async fn find_actual_destination(
|
|||
}
|
||||
}
|
||||
None => {
|
||||
debug!("4: No .well-known or an error occured");
|
||||
debug!("4: No .well-known or an error occurred");
|
||||
let (dest, expires) = get_srv_destination(destination_str).await;
|
||||
let well_known_retry = Instant::now()
|
||||
+ Duration::from_secs((60 * next_backoff_mins).into());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue