summaryrefslogtreecommitdiff
path: root/common/rust/src
diff options
context:
space:
mode:
Diffstat (limited to 'common/rust/src')
-rw-r--r--common/rust/src/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rust/src/error.rs b/common/rust/src/error.rs
index b602940..be1607a 100644
--- a/common/rust/src/error.rs
+++ b/common/rust/src/error.rs
@@ -7,6 +7,6 @@ pub struct NovaError {
impl fmt::Display for NovaError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
- write!(f, "An error occured wihind the nova system: {}", self.message) // user-facing output
+ write!(f, "An error occurred within the nova system: {}", self.message) // user-facing output
}
}