summaryrefslogtreecommitdiff
path: root/Documentation/internals
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2017-05-18 21:27:28 -0700
committerBen Pfaff <blp@ovn.org>2017-05-19 09:07:09 -0700
commit064ccb0ce7bb890d4af839c5a3f6f73aab8c12cd (patch)
treef6485d466b31d183542388f0cde79895a133a685 /Documentation/internals
parent081617f0df166e373b37ed2117d29f0f8bc219ef (diff)
downloadopenvswitch-064ccb0ce7bb890d4af839c5a3f6f73aab8c12cd.tar.gz
coding-style: Fix typo.
Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Greg Rose <gvrose8192@gmail.com>
Diffstat (limited to 'Documentation/internals')
-rw-r--r--Documentation/internals/contributing/coding-style.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/internals/contributing/coding-style.rst b/Documentation/internals/contributing/coding-style.rst
index 4694b2363..666e887b1 100644
--- a/Documentation/internals/contributing/coding-style.rst
+++ b/Documentation/internals/contributing/coding-style.rst
@@ -210,7 +210,7 @@ accept and ignore a null pointer argument. Code that calls such a function
null-pointer check. We find that this usually makes code easier to read.
Functions in ``.c`` files should not normally be marked ``inline``, because it
-does not usually help code generation and it does suppress compilers warnings
+does not usually help code generation and it does suppress compiler warnings
about unused functions. (Functions defined in .h usually should be marked
inline.)