chapters/developers: Fix code example in 'The Container_MDLL API' to fix line length
authorng0 <ng0@infotropique.org>
Fri, 20 Oct 2017 11:06:20 +0000 (11:06 +0000)
committerng0 <ng0@infotropique.org>
Fri, 20 Oct 2017 11:06:20 +0000 (11:06 +0000)
doc/chapters/developer.texi

index 386d9423859ce140fd337d5af0fc97b47c532723..7cef9955231ed85c475b7c94a3a5ab33ce576d12 100644 (file)
@@ -2957,10 +2957,14 @@ format "next_XX" and "prev_XX" where "XX" is the name of one of the
 doubly-linked lists. Here is a simple example:
 
 @example
-struct MyMultiListElement @{ struct
-MyMultiListElement *next_ALIST; struct MyMultiListElement *prev_ALIST; struct
-MyMultiListElement *next_BLIST; struct MyMultiListElement *prev_BLIST; void
-*data; @};
+struct MyMultiListElement {
+  struct MyMultiListElement *next_ALIST;
+  struct MyMultiListElement *prev_ALIST;
+  struct MyMultiListElement *next_BLIST;
+  struct MyMultiListElement *prev_BLIST;
+  void
+  *data;
+};
 @end example