From c6532ed3b8955594486758c175bffb68a866ffbc Mon Sep 17 00:00:00 2001 From: Spencer Judge Date: Wed, 19 Dec 2018 15:02:35 -0800 Subject: [PATCH] Typo fix in node already exists error Noticed this today while attempting to debug some logs, wanted to contribute it back. Thanks! --- src/errors.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/errors.rs b/src/errors.rs index 2ad61aecd..6dcdac7a4 100644 --- a/src/errors.rs +++ b/src/errors.rs @@ -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) {