From 5bf228fbd0ea1c4dee66b08eaa739c1fb3233c21 Mon Sep 17 00:00:00 2001 From: kyren Date: Thu, 3 Aug 2017 17:07:54 -0400 Subject: [PATCH] Fixup grammar error in doc comments. --- src/multi.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/multi.rs b/src/multi.rs index 50dc63a..636239c 100644 --- a/src/multi.rs +++ b/src/multi.rs @@ -51,8 +51,8 @@ impl<'lua> FromLuaMulti<'lua> for MultiValue<'lua> { /// Can be used to pass variadic values to or receive variadic values from Lua, where the type of /// the values is all the same and the number of values is defined at runtime. This can be included -/// in tuple when unpacking, but must be the final entry, and will consume the rest of the -/// parameters given. +/// in a tuple when converting from a MultiValue, but it must be the final entry, and it will +/// consume the rest of the parameters given. #[derive(Debug, Clone)] pub struct Variadic(Vec);