aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-11-01 10:51:35 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-11-01 14:34:05 +0900
commitf0c8c1e878978341701b0818c19bf383bd9efbae (patch)
tree4bbecf3634347c9f59a7066524ba1ff3347e5287
parent16953867ed8fc951364f05fdf0c9267799e3087a (diff)
downloadruby-f0c8c1e878978341701b0818c19bf383bd9efbae.tar.gz
vpath.rb: tweak --vpath option message
-rw-r--r--tool/lib/vpath.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/lib/vpath.rb b/tool/lib/vpath.rb
index 48ab148405..a52f840c30 100644
--- a/tool/lib/vpath.rb
+++ b/tool/lib/vpath.rb
@@ -56,7 +56,7 @@ class VPath
opt.on("-I", "--srcdir=DIR", "add a directory to search path") {|dir|
@additional << dir
}
- opt.on("-L", "--vpath=PATH LIST", "add directories to search path") {|dirs|
+ opt.on("-L", "--vpath=PATH-LIST", "add directories to search path") {|dirs|
@additional << [dirs]
}
opt.on("--path-separator=SEP", /\A(?:\W\z|\.(\W).+)/, "separator for vpath") {|sep, vsep|