From b02dda34314f0bd9bb6bb5bfd60e2458566bbf49 Mon Sep 17 00:00:00 2001 From: kyren Date: Thu, 15 Jun 2017 16:30:16 -0400 Subject: [PATCH] that example hardly shows ALL the features --- examples/examples.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/examples.rs b/examples/examples.rs index ca2e5b3..28f5dbf 100644 --- a/examples/examples.rs +++ b/examples/examples.rs @@ -130,8 +130,8 @@ fn examples() -> LuaResult<()> { assert_eq!(lua.eval::(r#"join("a", "b", "c")"#)?, "abc"); // You can create userdata with methods and metamethods defined on them. - // Here's a more complete example that shows all of the features of this API - // together + // Here's a more complete example that shows many of the features of this + // API together #[derive(Copy, Clone)] struct Vec2(f32, f32);