summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/FileCache.cpp
diff options
context:
space:
mode:
authorAustin Henriksen <austin@zeroc.com>2023-12-06 11:35:59 -0500
committerGitHub <noreply@github.com>2023-12-06 11:35:59 -0500
commite14afea88e4b3b65d29a64faa0f088cb986a9258 (patch)
treea3f6e11fab21a5105f40682d8fedeff25500a1a2 /cpp/src/IceGrid/FileCache.cpp
parentFixed typo in _makeLambdaOutgoing name (diff)
downloadice-e14afea88e4b3b65d29a64faa0f088cb986a9258.tar.bz2
ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.tar.xz
ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.zip
Fixed typos. (#1580)
Diffstat (limited to 'cpp/src/IceGrid/FileCache.cpp')
-rw-r--r--cpp/src/IceGrid/FileCache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/FileCache.cpp b/cpp/src/IceGrid/FileCache.cpp
index 110826408c7..628e54ca989 100644
--- a/cpp/src/IceGrid/FileCache.cpp
+++ b/cpp/src/IceGrid/FileCache.cpp
@@ -108,7 +108,7 @@ FileCache::getOffsetFromEnd(const string& file, int originalCount)
if(is.bad())
{
- throw FileNotAvailableException("unrecoverable error occured while reading file `" + file + "'");
+ throw FileNotAvailableException("unrecoverable error occurred while reading file `" + file + "'");
}
if(lines.empty())
@@ -205,7 +205,7 @@ FileCache::read(const string& file, Ice::Long offset, int size, Ice::Long& newOf
if(is.bad())
{
- throw FileNotAvailableException("unrecoverable error occured while reading file `" + file + "'");
+ throw FileNotAvailableException("unrecoverable error occurred while reading file `" + file + "'");
}
return is.eof();