diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-03-31 21:18:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-03-31 21:18:08 +0000 |
commit | 7bdcba172030b6c4aedf3e00514af1a857a04593 (patch) | |
tree | 752dcfa0080db649804125648993a7fa3174e50a /scripts | |
parent | be14203534c5f09d0c70c2bf59b81b80f2a90b32 (diff) | |
download | brdo-7bdcba172030b6c4aedf3e00514af1a857a04593.tar.gz brdo-7bdcba172030b6c4aedf3e00514af1a857a04593.tar.bz2 |
- Patch #19739 by Uwe: corrected many typo's in the documentation and code comments
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/code-style.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/code-style.pl b/scripts/code-style.pl index a5d0103cf..2ae2e1a13 100644 --- a/scripts/code-style.pl +++ b/scripts/code-style.pl @@ -51,14 +51,14 @@ while (<>) { $program = 0; } - # enfoce "bar". foo() ."bar" syntax + # enforce "bar". foo() ."bar" syntax if (/^("[^"]*"|[^"])*("[^"]*")\.[^ ]/ && $program) { $msg = "'\".' -> '\". '"; } elsif (/^("[^"]*"|[^"])*("[^"]*")\s+\./ && $program) { $msg = "'\" .' -> '\".'"; } - # enfoce "bar". foo() ."bar" syntax + # enforce "bar". foo() ."bar" syntax elsif (/^("[^"]*"|[^"])*[^ "]\.("[^"]*")/ && $program) { $msg = "'.\"' -> '.\"'"; } |