]> git.droids-corp.org - dpdk.git/blobdiff - doc/guides/contributing/coding_style.rst
doc: fix missing link target in Linux guide
[dpdk.git] / doc / guides / contributing / coding_style.rst
index 22f26dd9355dd60056c2a5610120669084ed4237..ad1392d2e426d91a9ab6bb11dc6253a307e999ba 100644 (file)
@@ -461,7 +461,7 @@ Local Variables
 * When declaring variables in functions, multiple variables per line are OK.
   However, if multiple declarations would cause the line to exceed a reasonable line length, begin a new set of declarations on the next line rather than using a line continuation.
 * Be careful to not obfuscate the code by initializing variables in the declarations, only the last variable on a line should be initialized.
 * When declaring variables in functions, multiple variables per line are OK.
   However, if multiple declarations would cause the line to exceed a reasonable line length, begin a new set of declarations on the next line rather than using a line continuation.
 * Be careful to not obfuscate the code by initializing variables in the declarations, only the last variable on a line should be initialized.
-  If multiple variables are to be initialised when defined, put one per line.
+  If multiple variables are to be initialized when defined, put one per line.
 * Do not use function calls in initializers, except for ``const`` variables.
 
 .. code-block:: c
 * Do not use function calls in initializers, except for ``const`` variables.
 
 .. code-block:: c