From 11a72ab765f6c3266f3bad11524ff2d26cf0878a Mon Sep 17 00:00:00 2001 From: Ethan P Date: Fri, 15 May 2020 18:38:05 -0700 Subject: [PATCH] Fix a typo --- src/input.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input.rs b/src/input.rs index f3036ab8..38300946 100644 --- a/src/input.rs +++ b/src/input.rs @@ -18,7 +18,7 @@ pub struct InputDescription { impl InputDescription { /// Creates a description for an input. /// - /// The name should uniquely describes where the input came from (e.g. "README.md") + /// The name should describe where the input came from (e.g. "README.md") pub fn new(name: impl Into) -> Self { InputDescription { name: name.into(),