doc: Removed extra indentation from wl_list code sample
authorBill Spitzak <spitzak@gmail.com>
Wed, 26 Nov 2014 01:41:03 +0000 (17:41 -0800)
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>
Wed, 26 Nov 2014 11:34:26 +0000 (13:34 +0200)
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>
src/wayland-util.h

index 46f9a81..a4b22b5 100644 (file)
@@ -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 {