]> mj.ucw.cz Git - libucw.git/commitdiff
Fixed few typos.
authorPavel Charvat <pchar@ucw.cz>
Mon, 27 Oct 2008 10:44:31 +0000 (11:44 +0100)
committerPavel Charvat <pchar@ucw.cz>
Mon, 27 Oct 2008 10:44:31 +0000 (11:44 +0100)
ucw/conf.h
ucw/doc/conf.txt

index 95baf2ca5fe2354ca45efdee81f33358372afa0d..50dbddc1712ea109b7c9fc24357e91a825d7b0e8 100644 (file)
@@ -132,7 +132,7 @@ struct cf_section {                 /** A section. **/
  *     uns value;
  *   };
  *
- *   struct clist nodes;
+ *   static struct clist nodes;
  *
  *   static struct cf_section node = {
  *     CF_TYPE(struct list_node),
@@ -148,7 +148,7 @@ struct cf_section {                 /** A section. **/
  *     CF_END
  *   };
  *
- * You could use <<def_CF_STATIC,`def_CF_STATIC`>> or <<def_CF_DYNAMIC,`def_CF_DYNAMIC`>>
+ * You could use <<def_CF_STATIC,`CF_STATIC`>> or <<def_CF_DYNAMIC,`CF_DYNAMIC`>>
  * macros to create arrays.
  */
 #define CF_TYPE(s)     .size = sizeof(s)
index 71358a81c71344b75851d809f9b71df4c06202d1..31698a62b9d6f4fafb8ad78a6c6b1c535844356d 100644 (file)
@@ -189,11 +189,12 @@ First element of your structure must be <<clist:type_cnode,`cnode`>>.
 +
 The first example is list of strings and uses <<clist:simple,simple
 lists>>:
-  struct clist list;
++
+  static struct clist list;
 +
   static struct cf_section section = {
     CF_ITEMS {
-      CF_LIST("list", &list, &cf_string_list_cofnig),
+      CF_LIST("list", &list, &cf_string_list_config),
       CF_END
     }
   };