From ca57b0cb67feb9db879a4b04c96c132e3f776ff4 Mon Sep 17 00:00:00 2001 From: Tom Fairfield Date: Mon, 12 Apr 2021 12:19:21 -0700 Subject: [PATCH] Fixes typo in LaunchAPPL client. --- LaunchAPPL/Client/StreamBasedLauncher.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LaunchAPPL/Client/StreamBasedLauncher.cc b/LaunchAPPL/Client/StreamBasedLauncher.cc index 668d6c1dce..2d1d652315 100644 --- a/LaunchAPPL/Client/StreamBasedLauncher.cc +++ b/LaunchAPPL/Client/StreamBasedLauncher.cc @@ -70,7 +70,7 @@ bool StreamBasedLauncher::Go(int timeout) while(!rStream->allDataArrived()) stream->wait(); - std::cerr << "Running Appliation..." << std::endl; + std::cerr << "Running Application..." << std::endl; read(&tmp, 4); uint32_t result = ntohl(tmp); std::cerr << "Finished (result = " << result << ")." << std::endl;