gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] branch master updated: chapters/developers: Fix co


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: chapters/developers: Fix code example in 'The Container_MDLL API' to fix line length
Date: Fri, 20 Oct 2017 13:07:29 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 6d839e76e chapters/developers: Fix code example in 'The Container_MDLL 
API' to fix line length
6d839e76e is described below

commit 6d839e76ef3d9f1a94757f137bb70659263eba7d
Author: ng0 <address@hidden>
AuthorDate: Fri Oct 20 11:06:20 2017 +0000

    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
 
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]