From 8e8853ee18b952b453935b3dfb78daa561a023d1 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo <nene@triin.net> Date: Wed, 2 Oct 2013 16:14:45 +0300 Subject: [PATCH] Fix trailing comma crash with Ruby 1.8. Fixes #460 --- lib/jsduck/options.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jsduck/options.rb b/lib/jsduck/options.rb index 628e2ec9..446b7886 100644 --- a/lib/jsduck/options.rb +++ b/lib/jsduck/options.rb @@ -726,7 +726,7 @@ module JsDuck "be cleaned up during docs generation, and the caching", "won't work.", "", - "This option only has an effect when --cache is also used.",) do |path| + "This option only has an effect when --cache is also used.") do |path| @cache_dir = path end -- GitLab