[Feature request] partial see
#1563
sevenc-nanashi
started this conversation in
Ideas
Replies: 2 comments
-
This could be accepted as a pull request if you wanted to take it on, otherwise it's probably unlikely to be added given that you can work around this limitation with # @macro a_param
# @param a testing 1
class K
#
# Do something
#
# @macro a_param
# @param b testing 2
# @param c testing 3
def method(a, b, c)
puts a, b, c
end
end
class A
#
# Do something
#
# @macro a_param
def method(a)
@k.method(self, a)
end
end |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It will be nice if
see
can be partial like this:Beta Was this translation helpful? Give feedback.
All reactions