A follow-up to r210260: updated a comment. No functional changes.

llvm-svn: 210767
This commit is contained in:
Alexander Kornienko 2014-06-12 11:25:45 +00:00
parent 65faa29670
commit 3095b420f4
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ struct FileFilter {
/// \brief Global options. These options are neither stored nor read from /// \brief Global options. These options are neither stored nor read from
/// configuration files. /// configuration files.
struct ClangTidyGlobalOptions { struct ClangTidyGlobalOptions {
/// \brief Output warnings from certain line ranges of certain files only. If /// \brief Output warnings from certain line ranges of certain files only.
/// this list is emtpy, it won't be applied. /// If empty, no warnings will be filtered.
std::vector<FileFilter> LineFilter; std::vector<FileFilter> LineFilter;
}; };