fixed wrong spelled words in comments. No function change.

This commit is contained in:
Ettl Martin 2012-05-05 15:21:27 +02:00
parent 11614021e8
commit 5d088aa99c
2 changed files with 3 additions and 3 deletions

View File

@ -703,7 +703,7 @@ void CheckStl::stlBoundries()
} }
} }
// Error message for bad boundry usage.. // Error message for bad boundary usage..
void CheckStl::stlBoundriesError(const Token *tok, const std::string &container_name) void CheckStl::stlBoundriesError(const Token *tok, const std::string &container_name)
{ {
reportError(tok, Severity::error, "stlBoundries", reportError(tok, Severity::error, "stlBoundries",

View File

@ -171,7 +171,7 @@ std::string Path::getRelativePath(const std::string& absolutePath, const std::ve
bool Path::isC(const std::string &path) bool Path::isC(const std::string &path)
{ {
// In unix, ".C" is concidered C++ file // In unix, ".C" is considered C++ file
const std::string extension = getFilenameExtension(path); const std::string extension = getFilenameExtension(path);
return(extension == ".c"); return(extension == ".c");
} }
@ -188,7 +188,7 @@ bool Path::isCPP(const std::string &path)
return true; return true;
} }
// In unix, ".C" is concidered C++ file // In unix, ".C" is considered C++ file
return(getFilenameExtension(path) == ".C"); return(getFilenameExtension(path) == ".C");
} }