Commit 6356230c authored by Davis King's avatar Davis King

Fixed some spelling errors.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403275
parent 0ca80ad0
......@@ -41,7 +41,7 @@ int main(int argc, char** argv)
test.get_dirs(dirs);
test.get_files(files);
// sort the files and directorys
// sort the files and directories
sort(files.begin(), files.end());
sort(dirs.begin(), dirs.end());
......@@ -62,11 +62,11 @@ int main(int argc, char** argv)
}
catch (file::file_not_found& e)
{
cout << "file not found or accessable: " << e.info << endl;
cout << "file not found or accessible: " << e.info << endl;
}
catch (directory::dir_not_found& e)
{
cout << "dir not found or accessable: " << e.info << endl;
cout << "dir not found or accessible: " << e.info << endl;
}
catch (directory::listing_error& e)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment