From f4851c138395d2ecd1118785ed67a02a936b286e Mon Sep 17 00:00:00 2001 From: Tobias Bucher Date: Mon, 30 Oct 2017 18:20:32 +0100 Subject: [PATCH] Fix a typo in the docs --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 5fda4a7..9bcac70 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -133,12 +133,12 @@ enum ErrorKind { ToolNotFound, } -/// Represents an internal error that occurred, with an explaination. +/// Represents an internal error that occurred, with an explanation. #[derive(Clone, Debug)] pub struct Error { /// Describes the kind of error that occurred. kind: ErrorKind, - /// More explaination of error that occurred. + /// More explanation of error that occurred. message: String, }