fix(typo): Correct typo from occured to occurred (#821)

This commit is contained in:
Ken Matsui 2021-11-01 04:39:57 +09:00 committed by GitHub
parent 03e62eb91c
commit f902f3ed1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View file

@ -62,7 +62,7 @@ pub fn main() {
}
}
Err(e) => {
eprintln!("Error occured: {:?}", e);
eprintln!("Error occurred: {:?}", e);
process::exit(1);
}
}

View file

@ -78,7 +78,7 @@ pub(crate) fn get_active_session() -> ActiveSession {
}
}
Err(e) => {
eprintln!("Error occured: {:?}", e);
eprintln!("Error occurred: {:?}", e);
process::exit(1);
}
}
@ -91,7 +91,7 @@ pub(crate) fn kill_session(name: &str) {
IpcSenderWithContext::new(stream).send(ClientToServerMsg::KillSession);
}
Err(e) => {
eprintln!("Error occured: {:?}", e);
eprintln!("Error occurred: {:?}", e);
process::exit(1);
}
};
@ -108,7 +108,7 @@ pub(crate) fn list_sessions() {
0
}
Err(e) => {
eprintln!("Error occured: {:?}", e);
eprintln!("Error occurred: {:?}", e);
1
}
};
@ -137,7 +137,7 @@ pub(crate) fn assert_session(name: &str) {
}
}
Err(e) => {
eprintln!("Error occured: {:?}", e);
eprintln!("Error occurred: {:?}", e);
}
};
process::exit(1);
@ -151,7 +151,7 @@ pub(crate) fn assert_session_ne(name: &str) {
}
println!("Session with name {:?} aleady exists. Use attach command to connect to it or specify a different name.", name);
}
Err(e) => eprintln!("Error occured: {:?}", e),
Err(e) => eprintln!("Error occurred: {:?}", e),
};
process::exit(1);
}

View file

@ -104,7 +104,7 @@ impl Display for ExitReason {
f,
"Session attached to another client. Use --force flag to force connect."
),
Self::Error(e) => write!(f, "Error occured in server:\n{}", e),
Self::Error(e) => write!(f, "Error occurred in server:\n{}", e),
}
}
}