From 6d839e76ef3d9f1a94757f137bb70659263eba7d Mon Sep 17 00:00:00 2001 From: ng0 Date: Fri, 20 Oct 2017 11:06:20 +0000 Subject: [PATCH] chapters/developers: Fix code example in 'The Container_MDLL API' to fix line length --- doc/chapters/developer.texi | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/doc/chapters/developer.texi b/doc/chapters/developer.texi index 386d94238..7cef99552 100644 --- a/doc/chapters/developer.texi +++ b/doc/chapters/developer.texi @@ -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 -- 2.25.1