From d0130167175f3a97cba9d7d5dc9d73a0261d06b6 Mon Sep 17 00:00:00 2001 From: David Majda Date: Sun, 20 Jan 2013 09:41:27 +0100 Subject: [PATCH] bin/pegjs: Fix help wrapping All help text should be wrapped at column 80. --- bin/pegjs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/pegjs b/bin/pegjs index 20bd43c..0fbd723 100755 --- a/bin/pegjs +++ b/bin/pegjs @@ -14,8 +14,8 @@ function printVersion() { function printHelp() { util.puts("Usage: pegjs [options] [--] [] []"); util.puts(""); - util.puts("Generates a parser from the PEG grammar specified in the and"); - util.puts("writes it to the ."); + util.puts("Generates a parser from the PEG grammar specified in the and writes"); + util.puts("it to the ."); util.puts(""); util.puts("If the is omitted, its name is generated by changing the"); util.puts(" extension to \".js\". If both and are"); @@ -30,8 +30,8 @@ function printHelp() { util.puts(" parser will be allowed to start parsing"); util.puts(" from (default: the first rule in the"); util.puts(" grammar)"); - util.puts(" -o, --optimize select optimization for speed or size (default:"); - util.puts(" speed)"); + util.puts(" -o, --optimize select optimization for speed or size"); + util.puts(" (default: speed)"); util.puts(" --plugin use a specified plugin (can be specified"); util.puts(" multiple times)"); util.puts(" -v, --version print version information and exit");