summaryrefslogtreecommitdiff
path: root/cpp/demo/IceGrid/simple/Client.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2005-09-23 08:05:32 +0000
committerBenoit Foucher <benoit@zeroc.com>2005-09-23 08:05:32 +0000
commit0b5eb02efce7c1cdd0aa004acc8a5311b5f83f0c (patch)
tree75c9b1186d1f270f5c2048bbe3a0936d92916479 /cpp/demo/IceGrid/simple/Client.cpp
parentFixes (diff)
downloadice-0b5eb02efce7c1cdd0aa004acc8a5311b5f83f0c.tar.bz2
ice-0b5eb02efce7c1cdd0aa004acc8a5311b5f83f0c.tar.xz
ice-0b5eb02efce7c1cdd0aa004acc8a5311b5f83f0c.zip
Fix
Diffstat (limited to 'cpp/demo/IceGrid/simple/Client.cpp')
-rw-r--r--cpp/demo/IceGrid/simple/Client.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/demo/IceGrid/simple/Client.cpp b/cpp/demo/IceGrid/simple/Client.cpp
index d154ee888e8..a030d7f269b 100644
--- a/cpp/demo/IceGrid/simple/Client.cpp
+++ b/cpp/demo/IceGrid/simple/Client.cpp
@@ -54,8 +54,8 @@ HelloClient::run(int argc, char* argv[])
//
// First we try to connect to the object with the `hello'
- // identity. If it's not registered with the registry, we seach
- // for an object with the ::Demo::Hello type.
+ // identity. If it's not registered with the registry, we
+ // search for an object with the ::Demo::Hello type.
//
Ice::ObjectPrx base = communicator()->stringToProxy(properties->getPropertyWithDefault("Identity", "hello"));
HelloPrx twoway;
@@ -70,7 +70,7 @@ HelloClient::run(int argc, char* argv[])
}
if(!twoway)
{
- cerr << argv[0] << ": couldn't find a `::Demo::Hello' object" << endl;
+ cerr << argv[0] << ": couldn't find a `::Demo::Hello' object." << endl;
return EXIT_FAILURE;
}