Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/runc/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ pub enum Error {
#[error(transparent)]
ProcessSpawnFailed(io::Error),

#[error("Error occured in runc: {0}")]
#[error("Error occurred in runc: {0}")]
InvalidCommand(io::Error),

#[error("Runc command failed: status={status}, stdout=\"{stdout}\", stderr=\"{stderr}\"")]
Expand Down Expand Up @@ -113,7 +113,7 @@ pub enum Error {
#[error("Sorry, this part of api is not implemented: {0}")]
Unimplemented(String),

#[error("Error occured in runc client: {0}")]
#[error("Error occurred in runc client: {0}")]
Other(Box<dyn std::error::Error + Send>),

#[error("Failed to set cmd io: {0}")]
Expand Down
Loading