[libvirt] [PATCH] Sync HACKING and hacking.html.in

Martin Kletzander mkletzan at redhat.com
Wed Jan 30 10:07:36 UTC 2013


After one last-minute change, only HACKING was updated and not
hacking.html.in, so this patch synchronizes that.
---
Pushed under the 'trivial' rule.
---
 docs/hacking.html.in | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/hacking.html.in b/docs/hacking.html.in
index 78620fc..fe4324a 100644
--- a/docs/hacking.html.in
+++ b/docs/hacking.html.in
@@ -241,7 +241,7 @@
     <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
@@ -250,7 +250,7 @@

     <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
@@ -259,7 +259,7 @@

     <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
@@ -269,7 +269,7 @@
     <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
@@ -278,7 +278,7 @@

     <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
--
1.8.1.2




More information about the libvir-list mailing list