From 401cf79cf6a85b2811743ab2fca456f358beb068 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Tue, 14 Jun 2016 18:28:45 +0200 Subject: [PATCH] Fixed incorrect usage information in help message. --- apps/plasp-app/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/plasp-app/main.cpp b/apps/plasp-app/main.cpp index dd43531..384da37 100644 --- a/apps/plasp-app/main.cpp +++ b/apps/plasp-app/main.cpp @@ -33,7 +33,7 @@ int main(int argc, char **argv) const auto printHelp = [&]() { - std::cout << "Usage: plasp file [options]" << std::endl; + std::cout << "Usage: plasp [files] [options]" << std::endl; std::cout << "Translate PDDL instances to ASP facts." << std::endl << std::endl; std::cout << description;