Skip to content

Commit

Permalink
libdeng2|FS: Further clarified file descriptions
Browse files Browse the repository at this point in the history
It is unnecessary to spell out "native" when it is clear that the
associated path is a native one.

FS2 paths are attributed as "path".
  • Loading branch information
skyjake committed Mar 24, 2014
1 parent a67911d commit 6a357ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doomsday/libdeng2/src/filesys/directoryfeed.cpp
Expand Up @@ -37,7 +37,7 @@ DirectoryFeed::~DirectoryFeed()

String DirectoryFeed::description() const
{
return "native directory \"" + _nativePath.pretty() + "\"";
return "directory \"" + _nativePath.pretty() + "\"";
}

void DirectoryFeed::populate(Folder &folder)
Expand Down
2 changes: 1 addition & 1 deletion doomsday/libdeng2/src/filesys/nativefile.cpp
Expand Up @@ -40,7 +40,7 @@ NativeFile::~NativeFile()

String NativeFile::describe() const
{
return String("native file \"%1\"").arg(_nativePath.pretty());
return String("\"%1\"").arg(_nativePath.pretty());
}

void NativeFile::close()
Expand Down

0 comments on commit 6a357ba

Please sign in to comment.