diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2016-12-13 01:46:26 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-12-13 03:55:10 +0100 |
commit | 224236d9c3a65d23cd3f113042404cf5e09e393c (patch) | |
tree | b960590f988b64abfdc3bc6787cda909f502a5a8 /scripts/checkpatch.pl | |
parent | checkpatch: don't try to get maintained status when --no-tree is given (diff) | |
download | linux-224236d9c3a65d23cd3f113042404cf5e09e393c.tar.xz linux-224236d9c3a65d23cd3f113042404cf5e09e393c.zip |
scripts/checkpatch.pl: fix spelling
s/preceeded/preceded/
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to '')
-rwxr-xr-x | scripts/checkpatch.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 7000adb5820c..9f651bcde046 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -5925,7 +5925,7 @@ sub process { } if (!$has_break && $has_statement) { WARN("MISSING_BREAK", - "Possible switch case/default not preceeded by break or fallthrough comment\n" . $herecurr); + "Possible switch case/default not preceded by break or fallthrough comment\n" . $herecurr); } } |