Forgot these

This commit is contained in:
rdb 2010-11-16 09:02:47 +00:00
parent 804a72b716
commit 76671657d6
2 changed files with 2 additions and 2 deletions

View File

@ -326,7 +326,7 @@ void PathFinder::remove_from_olist() {
}
}
// At this point the AINode was succesfully removed and the binary
// At this point the AINode was successfully removed and the binary
// heap re-arranged.
}

View File

@ -45,7 +45,7 @@ check_include(const string &line) {
if (p >= line.length() || (line[p] != '"' && line[p] != '<')) {
// if it starts with a capital, assume its a #define var used as
// include tgt, and dont print a warning
// include tgt, and don't print a warning
if(!((line[p]>='A')&&(line[p]<='Z'))) {
cerr << "Ignoring invalid #include directive: " << line << "\n";
}