doc: fix missing parenthesis with client examples (#1046)

This commit is contained in:
Daniel Hahler 2016-08-20 18:59:01 +02:00 committed by GitHub
parent e723d183e8
commit 63c8a310d0
1 changed files with 5 additions and 5 deletions

View File

@ -61,20 +61,20 @@
*
* client.connect_signal("manage", function(c)
* -- do something
* end
* end)
*
* To be notified a property changed in a client, use:
*
* client.connect_signal("property::name", function(c)
* -- do something
* end
* end)
*
* To be notified when a property change for a specific client (assuming it is
* stored in the variable `c`), use:
*
* c:connect_signal("property::name", function()
* -- do something
* end
* end)
*
* To get all the clients for a screen, use either `screen.clients` or
* `screen.tiled_clients`