diff options
author | Alp Toker <alp@nuanti.com> | 2013-12-05 16:25:25 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2013-12-05 16:25:25 +0000 |
commit | f6a24ce40fd5e807a5e71b17d0c04866e195fb87 (patch) | |
tree | 7cef755bd0df91b4b4b1267fb92e52a8a7953ded /clang/lib/Format/FormatToken.cpp | |
parent | 4cc2b87375e4d7a9ffdd93434033b742074ed078 (diff) | |
download | bcm5719-llvm-f6a24ce40fd5e807a5e71b17d0c04866e195fb87.tar.gz bcm5719-llvm-f6a24ce40fd5e807a5e71b17d0c04866e195fb87.zip |
Fix a tranche of comment, test and doc typos
llvm-svn: 196510
Diffstat (limited to 'clang/lib/Format/FormatToken.cpp')
-rw-r--r-- | clang/lib/Format/FormatToken.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Format/FormatToken.cpp b/clang/lib/Format/FormatToken.cpp index bab2425205c..748e2fd84a7 100644 --- a/clang/lib/Format/FormatToken.cpp +++ b/clang/lib/Format/FormatToken.cpp @@ -50,7 +50,7 @@ unsigned CommaSeparatedList::format(LineState &State, const ColumnFormat *Format = getColumnFormat(RemainingCodePoints); // If no ColumnFormat can be used, the braced list would generally be // bin-packed. Add a severe penalty to this so that column layouts are - // prefered if possible. + // preferred if possible. if (!Format) return 10000; |