diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2016-12-12 16:46:26 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-12-12 18:55:10 -0800 |
commit | 224236d9c3a65d23cd3f113042404cf5e09e393c (patch) | |
tree | b960590f988b64abfdc3bc6787cda909f502a5a8 /scripts | |
parent | f2c19c2f380fcfdc85eb750016d73f7cd3e77573 (diff) | |
download | linux-224236d9c3a65d23cd3f113042404cf5e09e393c.tar.bz2 |
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 'scripts')
-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); } } |