diff options
author | Manuel Pégourié-Gonnard | 2015-12-28 11:06:55 +0100 |
---|---|---|
committer | Jonathan Corbet | 2016-01-11 18:18:16 -0700 |
commit | 9a2885e662bcbdcbc473f207b481c65b8620537b (patch) | |
tree | 13853decde56a4c1b10a4d53c6364e324f8a1768 /Documentation/CodingStyle | |
parent | b03539665d4bd4bdb2a7dd5f65cdbd7a24cc3f1c (diff) |
Documentation: fix typo in CodingStyle
Simple typo: "it" for "is".
Signed-off-by: Manuel Pégourié-Gonnard <mpg@elzevir.fr>
Cc: Trivial Patch Monkey <trivial@kernel.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/CodingStyle')
-rw-r--r-- | Documentation/CodingStyle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/CodingStyle b/Documentation/CodingStyle index c06f817b3091..db653774c0b7 100644 --- a/Documentation/CodingStyle +++ b/Documentation/CodingStyle @@ -430,7 +430,7 @@ The rationale for using gotos is: return result; } -A common type of bug to be aware of it "one err bugs" which look like this: +A common type of bug to be aware of is "one err bugs" which look like this: err: kfree(foo->bar); |