From cfbbc33286072ca97ab0d3af6510925032b433b8 Mon Sep 17 00:00:00 2001 From: kojix2 <2xijok@gmail.com> Date: Fri, 28 May 2021 12:31:06 +0900 Subject: [PATCH] Adjust summary_width Try to keep it within 80 characters --- lib/youplot/parser.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/youplot/parser.rb b/lib/youplot/parser.rb index caad5b7..d413fa1 100644 --- a/lib/youplot/parser.rb +++ b/lib/youplot/parser.rb @@ -33,7 +33,7 @@ module YouPlot OptionParser.new do |parser| parser.program_name = 'YouPlot' parser.version = YouPlot::VERSION - parser.summary_width = 24 + parser.summary_width = 23 parser.on_tail('') # Add a blank line at the end parser.separator('') parser.on('Common options:')