]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Sync HACKING and hacking.html.in
authorMartin Kletzander <mkletzan@redhat.com>
Wed, 30 Jan 2013 10:01:31 +0000 (11:01 +0100)
committerMartin Kletzander <mkletzan@redhat.com>
Wed, 30 Jan 2013 10:01:31 +0000 (11:01 +0100)
After one last-minute change, only HACKING was updated and not
hacking.html.in, so this patch synchronizes that.

docs/hacking.html.in

index 78620fce6770cb673dc034d5e794ee709a14d26c..fe4324af84bc10f5a1551778d009e4ca55aade44 100644 (file)
     <p>
       The keywords <code>if</code>, <code>for</code>, <code>while</code>,
       and <code>switch</code> must have a single space following them
-      before the opening bracket. e.g.
+      before the opening bracket. E.g.
     </p>
     <pre>
       if(foo)   // Bad
 
     <p>
       Function implementations must <strong>not</strong> have any whitespace
-      between the function name and the opening bracket. e.g.
+      between the function name and the opening bracket. E.g.
     </p>
     <pre>
       int foo (int wizz)  // Bad
 
     <p>
       Function calls must <strong>not</strong> have any whitespace
-      between the function name and the opening bracket. e.g.
+      between the function name and the opening bracket. E.g.
     </p>
     <pre>
       bar = foo (wizz);  // Bad
     <p>
       Function typedefs must <strong>not</strong> have any whitespace
       between the closing bracket of the function name and opening
-      bracket of the arg list. e.g.
+      bracket of the arg list. E.g.
     </p>
     <pre>
       typedef int (*foo) (int wizz);  // Bad
 
     <p>
       There must not be any whitespace immediately following any
-      opening bracket, or immediately prior to any closing bracket. e.g.
+      opening bracket, or immediately prior to any closing bracket. E.g.
     </p>
     <pre>
       int foo( int wizz );  // Bad