aboutsummaryrefslogtreecommitdiffstats
path: root/src/wayland-client.h
diff options
context:
space:
mode:
authorBill Spitzak <spitzak@gmail.com>2014-11-11 18:43:02 -0800
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>2014-11-25 16:38:59 +0200
commitdfdb0878264b72d49c263b87952f9fec85e278c2 (patch)
tree0b59e9a3bb5492d4197623011e15205776f74a1f /src/wayland-client.h
parentdoc: fixed a typo (diff)
downloadwayland-dfdb0878264b72d49c263b87952f9fec85e278c2.tar
wayland-dfdb0878264b72d49c263b87952f9fec85e278c2.tar.gz
wayland-dfdb0878264b72d49c263b87952f9fec85e278c2.tar.bz2
wayland-dfdb0878264b72d49c263b87952f9fec85e278c2.tar.lz
wayland-dfdb0878264b72d49c263b87952f9fec85e278c2.tar.xz
wayland-dfdb0878264b72d49c263b87952f9fec85e278c2.tar.zst
wayland-dfdb0878264b72d49c263b87952f9fec85e278c2.zip
doc: Removed \ref when it refers to the subject the text is attached to
This does not make a difference to doxygen output but may help other document generators not make redundant links. Reviewed-by: Bryce Harrington <b.harrington@samsung.com>
Diffstat (limited to 'src/wayland-client.h')
-rw-r--r--src/wayland-client.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wayland-client.h b/src/wayland-client.h
index 0801a81..dd42d7b 100644
--- a/src/wayland-client.h
+++ b/src/wayland-client.h
@@ -41,7 +41,7 @@ extern "C" {
* turn call the handler set with \ref wl_proxy_add_listener().
*
* \note With the exception of function \ref wl_proxy_set_queue(), functions
- * accessing a \ref wl_proxy are not normally used by client code. Clients
+ * accessing a wl_proxy are not normally used by client code. Clients
* should normally use the higher level interface generated by the scanner to
* interact with compositor objects.
*
@@ -53,15 +53,15 @@ struct wl_proxy;
* \brief Represents a connection to the compositor and acts as a proxy to
* the wl_display singleton object.
*
- * A \ref wl_display object represents a client connection to a Wayland
+ * A wl_display object represents a client connection to a Wayland
* compositor. It is created with either \ref wl_display_connect() or
* \ref wl_display_connect_to_fd(). A connection is terminated using
* \ref wl_display_disconnect().
*
- * A \ref wl_display is also used as the \ref wl_proxy for the \ref wl_display
+ * A wl_display is also used as the \ref wl_proxy for the wl_display
* singleton object on the compositor side.
*
- * A \ref wl_display object handles all the data sent from and to the
+ * A wl_display object handles all the data sent from and to the
* compositor. When a \ref wl_proxy marshals a request, it will write its wire
* representation to the display's write buffer. The data is sent to the
* compositor when the client calls \ref wl_display_flush().
@@ -71,7 +71,7 @@ struct wl_proxy;
* added to a queue. On the dispatch step, the handler for the incoming
* event set by the client on the corresponding \ref wl_proxy is called.
*
- * A \ref wl_display has at least one event queue, called the <em>main
+ * A wl_display has at least one event queue, called the <em>main
* queue</em>. Clients can create additional event queues with \ref
* wl_display_create_queue() and assign \ref wl_proxy's to it. Events
* occurring in a particular proxy are always queued in its assigned queue.