From 99b5f46a9ea461b6badc9a7cdda864794e203693 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Tue, 15 Sep 2009 20:32:16 +0000 Subject: [PATCH] Fix type in help. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index f75b8154..a9e9c339 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -16,7 +16,7 @@ #include void print_help() { - std::cout << "ChaiScript evaluator. To evaluate and expression, type it and press ." << std::endl; + std::cout << "ChaiScript evaluator. To evaluate an expression, type it and press ." << std::endl; std::cout << "Additionally, you can inspect the runtime system using:" << std::endl; std::cout << " dump_system() - outputs all functions registered to the system" << std::endl; std::cout << " dump_object(x) - dumps information about the given symbol" << std::endl;