aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Spitzak <spitzak@gmail.com>2014-11-25 17:41:03 -0800
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>2014-11-26 13:34:26 +0200
commit266b7f06bee13b06f2a73cb7330382de69cbf1ce (patch)
tree88e69b5977ca8381f0aef0ea57ca2d632a77174a
parentdoc: Removed \ref when it refers to the subject the text is attached to (diff)
downloadwayland-266b7f06bee13b06f2a73cb7330382de69cbf1ce.tar
wayland-266b7f06bee13b06f2a73cb7330382de69cbf1ce.tar.gz
wayland-266b7f06bee13b06f2a73cb7330382de69cbf1ce.tar.bz2
wayland-266b7f06bee13b06f2a73cb7330382de69cbf1ce.tar.lz
wayland-266b7f06bee13b06f2a73cb7330382de69cbf1ce.tar.xz
wayland-266b7f06bee13b06f2a73cb7330382de69cbf1ce.tar.zst
wayland-266b7f06bee13b06f2a73cb7330382de69cbf1ce.zip
doc: Removed extra indentation from wl_list code sample
This is a minor documentation fix. I did not see any asterisks in the output as reported by Pekka Paalanen. Using doxygen 1.7.6.1. Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
-rw-r--r--src/wayland-util.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wayland-util.h b/src/wayland-util.h
index 46f9a81..a4b22b5 100644
--- a/src/wayland-util.h
+++ b/src/wayland-util.h
@@ -107,10 +107,10 @@ struct wl_interface {
*
* Iterate the list in ascending order:
* \code
- * item_t *item;
- * wl_list_for_each(item, foo_list, link) {
- * Do_something_with_item(item);
- * }
+ * item_t *item;
+ * wl_list_for_each(item, foo_list, link) {
+ * Do_something_with_item(item);
+ * }
* \endcode
*/
struct wl_list {