slight wording updates

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-03-16 13:22:15 -04:00 committed by June
parent b4fa306a20
commit de8f773620
2 changed files with 3 additions and 3 deletions

View file

@ -75,7 +75,7 @@ pub async fn send_state_event_for_empty_key_route(
.into()) .into())
} }
/// # `GET /_matrix/client/r0/rooms/{roomid}/state` /// # `GET /_matrix/client/v3/rooms/{roomid}/state`
/// ///
/// Get all state events for a room. /// Get all state events for a room.
/// ///

View file

@ -1007,12 +1007,12 @@ impl Service {
return Ok(()); return Ok(());
}, },
Err(e) => { Err(e) => {
warn!("{backfill_server} could not provide backfill: {e}"); warn!("{backfill_server} failed to provide backfill: {e}");
}, },
} }
} }
info!("No servers could backfill"); info!("No servers could backfill, but backfill was needed");
Ok(()) Ok(())
} }