Skip to content

Commit

Permalink
Merge pull request #9 from sbrkopac/master
Browse files Browse the repository at this point in the history
changed concate to concat
  • Loading branch information
vsg-dev authored Nov 20, 2018
2 parents f45a94a + fd62cf5 commit 925bc1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/vsg/io/FileSystem.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace vsg

extern VSG_DECLSPEC Path fileExtension(const Path& path);

extern VSG_DECLSPEC Path concatePaths(const Path& left, const Path& right);
extern VSG_DECLSPEC Path concatPaths(const Path& left, const Path& right);

extern VSG_DECLSPEC Path findFile(const Path& filename, const Paths& paths);

Expand Down
4 changes: 2 additions & 2 deletions src/vsg/io/FileSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Path vsg::fileExtension(const Path& path)
return path.substr(dot + 1);
}

Path vsg::concatePaths(const Path& left, const Path& right)
Path vsg::concatPaths(const Path& left, const Path& right)
{
if (left.empty())
{
Expand All @@ -103,7 +103,7 @@ Path vsg::findFile(const Path& filename, const Paths& paths)
{
for (auto path : paths)
{
Path fullpath = concatePaths(path, filename);
Path fullpath = concatPaths(path, filename);
if (fileExists(fullpath))
{
return fullpath;
Expand Down

0 comments on commit 925bc1b

Please sign in to comment.