summaryrefslogtreecommitdiff
path: root/common/rust/src
diff options
context:
space:
mode:
authorMatthieu <matthieu@developershouse.xyz>2021-09-26 19:08:40 +0400
committerMatthieu <matthieu@developershouse.xyz>2021-09-26 19:08:40 +0400
commitba5c9a8515b1f9488bae4d50b8f4c5574f1f25ea (patch)
treec8d4c06aa0b69134a6495bae2c25ac7b2babb49e /common/rust/src
parentb7af2f42afc691d418a7dd006f5bad3285f0549c (diff)
NovaCtl cluster command & control proto
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
}
}