diff options
author | Aaron Faanes <dafrito@gmail.com> | 2013-09-15 13:37:08 -0500 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2013-09-16 21:59:28 -0700 |
commit | 5197aa30c81c076d018641fc6199d64431d518a4 (patch) | |
tree | 1229dfb762e1d574da2f5b8f76d31c2508ecf1cc /src/wayland-server.h | |
parent | fffcdb25deb51bcb3698563f30c5b4882e3ff107 (diff) |
wayland-server: Improve wording for wl_signal_get's doc
The old description was a bit vague; this commit hopefully improves
describing what is returned.
Diffstat (limited to 'src/wayland-server.h')
-rw-r--r-- | src/wayland-server.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wayland-server.h b/src/wayland-server.h index 2e616c1..997e6c7 100644 --- a/src/wayland-server.h +++ b/src/wayland-server.h @@ -221,7 +221,7 @@ wl_signal_add(struct wl_signal *signal, struct wl_listener *listener) wl_list_insert(signal->listener_list.prev, &listener->link); } -/** Gets the list item for the specified listener. +/** Gets the listener struct for the specified callback. * * \param signal The signal that contains the specified listener * \param notify The listener that is the target of this search |