From 3ba07d77a6edc1c0239fe5676483c953944f4d9e Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sun, 30 Oct 2016 13:15:06 +0100 Subject: [PATCH] Fix three typos Signed-off-by: Uli Schlachter --- tests/examples/text/gears/object/properties.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/examples/text/gears/object/properties.lua b/tests/examples/text/gears/object/properties.lua index 5d69e116..0c80d8b3 100644 --- a/tests/examples/text/gears/object/properties.lua +++ b/tests/examples/text/gears/object/properties.lua @@ -1,7 +1,7 @@ local gears = require("gears") --DOC_HIDE -- Create a class for this object. It will be used as a backup source for - -- methods and acessors. It is also possible to set them diretly on the + -- methods and accessors. It is also possible to set them directly on the -- object. local class = {} @@ -39,7 +39,7 @@ print(o.foo) o:method(1, 2, 3) - -- Random properties can also be added, the signal will be emited automatically. + -- Random properties can also be added, the signal will be emitted automatically. o:connect_signal("property::something", function(obj, value) print("In the connection handler!", obj, value)