Skip to content

Commit

Permalink
Typo fix in node already exists error (#159)
Browse files Browse the repository at this point in the history
Noticed this today while attempting to debug some logs, wanted to contribute it back. Thanks!
  • Loading branch information
Sushisource authored and Hoverbear committed Jan 15, 2019
1 parent 543f510 commit da4161d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ quick_error! {
}
/// The node exists, but should not.
Exists(id: u64, set: &'static str) {
display("The node {} aleady exists in the {} set.", id, set)
display("The node {} already exists in the {} set.", id, set)
}
/// The node does not exist, but should.
NotExists(id: u64, set: &'static str) {
Expand Down

0 comments on commit da4161d

Please sign in to comment.