This commit is contained in:
Jerry Starke 2026-06-21 02:49:52 +02:00
commit 574ff4114e
5 changed files with 11 additions and 11 deletions

View file

@ -139,7 +139,7 @@ where
Ok(v) => v,
Err(e) => {
error!(
"an error ocurred whilest reading connection data buffer: {:?}",
"an error ocurred whilst reading connection data buffer: {:?}",
e
);
continue;
@ -151,7 +151,7 @@ where
let user_connection_data = match user_connection_data {
Ok(v) => v,
Err(e) => {
error!("an error ocurred whilest reading connection data: {:?}", e);
error!("an error ocurred whilst reading connection data: {:?}", e);
continue;
}
};

View file

@ -31,7 +31,7 @@ pub async fn start_friends_backend() {
Ok(v) => v,
Err(e) => {
error!(
"an error ocurred whilest reading connection data buffer: {:?}",
"an error ocurred whilst reading connection data buffer: {:?}",
e
);
continue;
@ -43,7 +43,7 @@ pub async fn start_friends_backend() {
let c = match user_connection_data {
Ok(v) => v,
Err(e) => {
error!("an error ocurred whilest reading connection data: {:?}", e);
error!("an error ocurred whilst reading connection data: {:?}", e);
continue;
}
};

View file

@ -37,7 +37,7 @@ use tokio::time::{Instant, sleep, sleep_until};
#[derive(Error, Debug)]
pub enum RemoteCallError {
#[error("Call to remote timed out whilest waiting on response.")]
#[error("Call to remote timed out whilst waiting on response.")]
Timeout,
#[error("A server side rmc error occurred: {0:?}")]
ServerError(ErrorCode),