summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2016-03-15 15:37:37 -0700
committerMark Spruiell <mes@zeroc.com>2016-03-15 15:37:37 -0700
commitebf507c026e5a4d640aede9bde1bc2fc5d4e0cdc (patch)
tree909edf588d7a24902ad662d6933bd034fc0c4371
parentRuby 1.8 Ice/operations fix to no use force_encoding new in Ruby 1.9 (diff)
downloadice-ebf507c026e5a4d640aede9bde1bc2fc5d4e0cdc.tar.bz2
ice-ebf507c026e5a4d640aede9bde1bc2fc5d4e0cdc.tar.xz
ice-ebf507c026e5a4d640aede9bde1bc2fc5d4e0cdc.zip
minor comment fix in IceUtil
-rw-r--r--cpp/src/IceUtil/FileUtil.cpp2
-rw-r--r--cpp/src/IceUtil/FileUtil.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceUtil/FileUtil.cpp b/cpp/src/IceUtil/FileUtil.cpp
index dfcbf670b5c..4e3dc407804 100644
--- a/cpp/src/IceUtil/FileUtil.cpp
+++ b/cpp/src/IceUtil/FileUtil.cpp
@@ -94,7 +94,7 @@ IceUtilInternal::directoryExists(const string& path)
}
//
-// Determinte if a directory exists and is empty
+// Determine if a directory exists and is empty.
//
#ifndef ICE_OS_WINRT
bool
diff --git a/cpp/src/IceUtil/FileUtil.h b/cpp/src/IceUtil/FileUtil.h
index 8ff6af42406..7d5c478834d 100644
--- a/cpp/src/IceUtil/FileUtil.h
+++ b/cpp/src/IceUtil/FileUtil.h
@@ -41,7 +41,7 @@ ICE_UTIL_API bool fileExists(const std::string&);
ICE_UTIL_API bool directoryExists(const std::string&);
//
-// Determinte if a directory exists and is empty
+// Determine if a directory exists and is empty.
//
ICE_UTIL_API bool isEmptyDirectory(const std::string&);