forked from spacebar/rust-nex
Fix typo
This commit is contained in:
parent
66004f7713
commit
574ff4114e
5 changed files with 11 additions and 11 deletions
|
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
Loading…
Reference in a new issue