Fixup grammar error in doc comments.

This commit is contained in:
kyren 2017-08-03 17:07:54 -04:00
parent 50436d3463
commit 5bf228fbd0
1 changed files with 2 additions and 2 deletions

View File

@ -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<T>(Vec<T>);