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()));