From 8bd866e8a4ec39fec9361ac7322cb5383aa8a9bc Mon Sep 17 00:00:00 2001 From: tompng Date: Sun, 22 Feb 2026 03:00:58 +0900 Subject: [PATCH] [DOC] fix invalid nodoc comment of Pathname#plus --- lib/pathname_builtin.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/pathname_builtin.rb b/lib/pathname_builtin.rb index 939c47c..44e13e5 100644 --- a/lib/pathname_builtin.rb +++ b/lib/pathname_builtin.rb @@ -708,7 +708,8 @@ def +(other) end alias / + - def plus(path1, path2) # -> path # :nodoc: + # (path1, path2) -> path + def plus(path1, path2) # :nodoc: prefix2 = path2 index_list2 = [] basename_list2 = []