From 96381d1cb8ba07b27f52c019efd41ce5d00ea352 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=20Schr=C3=B6der?= Date: Wed, 28 Oct 2020 01:44:36 +0100 Subject: Fix spelling mistakes --- cgrep.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'cgrep.cpp') diff --git a/cgrep.cpp b/cgrep.cpp index 9f685ad..91e6641 100644 --- a/cgrep.cpp +++ b/cgrep.cpp @@ -40,7 +40,7 @@ namespace { static llvm::cl::OptionCategory CGrepCat("cgrep options"); cl::opt CO_RECURSIVE( "dir", - cl::desc("recursively goes through all the files and directories. assumes " + cl::desc("Recursively goes through all the files and directories. Assumes " "compilation databases are present for all source files."), cl::init(""), cl::cat(CGrepCat), cl::Optional); cl::opt CO_REGEX("regex", cl::desc("The regex to match against."), @@ -66,7 +66,7 @@ cl::opt CO_CXXCALL("cxxcall", cl::desc("Match member function calls."), cl::opt CO_CFIELD("cfield", cl::desc("Match C field declarations."), cl::init(false), cl::cat(CGrepCat), cl::Optional); // done -cl::opt CO_CLASS("class", cl::desc("Match class declrations."), +cl::opt CO_CLASS("class", cl::desc("Match class declarations."), cl::init(false), cl::cat(CGrepCat), cl::Optional); // done cl::opt CO_STRUCT("struct", cl::desc("Match structures."), @@ -98,7 +98,7 @@ cl::opt CO_ALL("all", cl::desc("Turns on all switches other than nameddecl."), cl::init(false), cl::cat(CGrepCat), cl::Optional); // done cl::opt CO_NAMEDDECL("nameddecl", - cl::desc("Matches all named declrations."), + cl::desc("Matches all named declarations."), cl::init(false), cl::cat(CGrepCat), cl::Optional); // done cl::opt CO_DECLREFEXPR("declrefexpr", cl::desc("Matches declrefexpr."), @@ -106,11 +106,11 @@ cl::opt CO_DECLREFEXPR("declrefexpr", cl::desc("Matches declrefexpr."), cl::Optional); // done cl::opt CO_AWK("awk", - cl::desc("Outputs location in a gawk freidnly format, not meant for " + cl::desc("Outputs location in a gawk friendly format, not meant for " "human consumption. Defaults to false."), cl::init(false), cl::cat(CGrepCat), cl::Optional); // done cl::opt CO_NOCOLOR("nocolor", - cl::desc("For terminals that don't supprt ANSI escape " + cl::desc("For terminals that don't support ANSI escape " "sequences. The default is to false."), cl::init(false), cl::cat(CGrepCat), cl::Optional); // done @@ -134,7 +134,7 @@ cl::opt CO_A("A", "line to print. Defaults to 0."), cl::init(0), cl::cat(CGrepCat), cl::Optional); // done cl::opt CO_B("B", - cl::desc("Same as grep, howm many lines before the matched " + cl::desc("Same as grep, how many lines before the matched " "line to print. Defaults to 0."), cl::init(0), cl::cat(CGrepCat), cl::Optional); // done } // namespace @@ -228,7 +228,7 @@ bool regex_handler(std::string rx_str, std::string identifier_name) { * @param MR match result * @param SR source range for the matched result * @param SM sourcemanager - * @param isdecl is the matched result a delaration + * @param isdecl is the matched result a declaration * @param DTN the matched result cast to a dynamically typed node */ void output_handler(const MatchFinder::MatchResult &MR, SourceRange SR, @@ -295,7 +295,7 @@ void output_handler(const MatchFinder::MatchResult &MR, SourceRange SR, /** * @brief Gets the list of all directories and sub-directories starting from a * base directory. - * @param _path where the the base directory is. + * @param _path where the base directory is. * @return Returns the list of all found dirs. */ std::vector listDirs(std::string path) { -- cgit v1.2.3