GConvert: improve test coverage
[platform/upstream/glib.git] / glib / gslist.c
index f8e7dcd..1de9c57 100644 (file)
@@ -34,7 +34,7 @@
 #include "gtestutils.h"
 
 /**
- * SECTION: linked_lists_single
+ * SECTION:linked_lists_single
  * @title: Singly-Linked Lists
  * @short_description: linked lists containing integer values or
  *                     pointers to data, limited to iterating over the
@@ -47,7 +47,7 @@
  * pointer which links to the next element in the list. Using this
  * pointer it is possible to move through the list in one direction
  * only (unlike the <link
- * linkend="glib-Doubly-Linked-lists">Doubly-Linked Lists</link> which
+ * linkend="glib-Doubly-Linked-Lists">Doubly-Linked Lists</link> which
  * allow movement in both directions).
  *
  * The data contained in each element can be either integer values, by