Fix three typos

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2016-10-30 13:15:06 +01:00 committed by Yauhen Kirylau
parent 70f9999a06
commit 3ba07d77a6
1 changed files with 2 additions and 2 deletions

View File

@ -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)