From 3faf74fd188be7bc10f9fbd8668bda47a773934b Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Wed, 31 Jan 2018 22:16:20 +0300 Subject: [PATCH] Update host.rs --- src/host.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/host.rs b/src/host.rs index 200da0f..4fd46b7 100644 --- a/src/host.rs +++ b/src/host.rs @@ -26,7 +26,7 @@ impl<'a> RuntimeArgs<'a> { /// /// # Errors /// - /// Returns `Err` if this list have not enough arguments. + /// Returns `Err` if this list has not enough arguments. pub fn nth_value_checked(&self, idx: usize) -> Result { if self.0.len() <= idx { return Err(Error::Value("Invalid argument index".to_owned()));