summaryrefslogtreecommitdiff
path: root/Source/Core/Common/StringUtil.cpp
diff options
context:
space:
mode:
authorStevoisiak <S.Vascellaro@gmail.com>2015-01-11 00:17:29 -0500
committerStevoisiak <Stevoisiak@gmail.com>2015-01-12 15:18:18 -0500
commitcb86db7b68481edf129a4bfcf6cd44a9a0f32ac8 (patch)
treebcb70b5e663dec4c5dd4bf3a750bfef476ab655e /Source/Core/Common/StringUtil.cpp
parentb3474c821868717ef6fe542ddcf1892dd0802c04 (diff)
Minor consistency changes
Mostly small changes, like capitalization and spelling
Diffstat (limited to 'Source/Core/Common/StringUtil.cpp')
-rw-r--r--Source/Core/Common/StringUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/StringUtil.cpp b/Source/Core/Common/StringUtil.cpp
index edc1ca9046..cfd7b03577 100644
--- a/Source/Core/Common/StringUtil.cpp
+++ b/Source/Core/Common/StringUtil.cpp
@@ -218,7 +218,7 @@ bool SplitPath(const std::string& full_path, std::string* _pPath, std::string* _
return false;
size_t dir_end = full_path.find_last_of("/"
- // windows needs the : included for something like just "C:" to be considered a directory
+ // Windows needs the : included for something like just "C:" to be considered a directory
#ifdef _WIN32
":"
#endif