Skip to content

Commit 110d1ae

Browse files
yui-knkkares
authored andcommittedDec 31, 2017
Fix docs [ci skip] (#4922)
1 parent a7df465 commit 110d1ae

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎core/src/main/java/org/jruby/internal/runtime/methods/InvocationMethodFactory.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -93,31 +93,31 @@ public class InvocationMethodFactory extends MethodFactory implements Opcodes {
9393
private final static String COMPILED_CALL_SIG_ZERO_BLOCK = sig(IRubyObject.class,
9494
params(ThreadContext.class, IRubyObject.class, RubyModule.class, String.class, Block.class));
9595

96-
/** The outward arity-zero call-with-block signature for compiled Ruby method handles. */
96+
/** The outward arity-zero call-without-block signature for compiled Ruby method handles. */
9797
private final static String COMPILED_CALL_SIG_ZERO = sig(IRubyObject.class,
9898
params(ThreadContext.class, IRubyObject.class, RubyModule.class, String.class));
9999

100-
/** The outward arity-zero call-with-block signature for compiled Ruby method handles. */
100+
/** The outward arity-one call-with-block signature for compiled Ruby method handles. */
101101
private final static String COMPILED_CALL_SIG_ONE_BLOCK = sig(IRubyObject.class,
102102
params(ThreadContext.class, IRubyObject.class, RubyModule.class, String.class, IRubyObject.class, Block.class));
103103

104-
/** The outward arity-zero call-with-block signature for compiled Ruby method handles. */
104+
/** The outward arity-one call-without-block signature for compiled Ruby method handles. */
105105
private final static String COMPILED_CALL_SIG_ONE = sig(IRubyObject.class,
106106
params(ThreadContext.class, IRubyObject.class, RubyModule.class, String.class, IRubyObject.class));
107107

108-
/** The outward arity-zero call-with-block signature for compiled Ruby method handles. */
108+
/** The outward arity-two call-with-block signature for compiled Ruby method handles. */
109109
private final static String COMPILED_CALL_SIG_TWO_BLOCK = sig(IRubyObject.class,
110110
params(ThreadContext.class, IRubyObject.class, RubyModule.class, String.class, IRubyObject.class, IRubyObject.class, Block.class));
111111

112-
/** The outward arity-zero call-with-block signature for compiled Ruby method handles. */
112+
/** The outward arity-two call-without-block signature for compiled Ruby method handles. */
113113
private final static String COMPILED_CALL_SIG_TWO = sig(IRubyObject.class,
114114
params(ThreadContext.class, IRubyObject.class, RubyModule.class, String.class, IRubyObject.class, IRubyObject.class));
115115

116-
/** The outward arity-zero call-with-block signature for compiled Ruby method handles. */
116+
/** The outward arity-three call-with-block signature for compiled Ruby method handles. */
117117
private final static String COMPILED_CALL_SIG_THREE_BLOCK = sig(IRubyObject.class,
118118
params(ThreadContext.class, IRubyObject.class, RubyModule.class, String.class, IRubyObject.class, IRubyObject.class, IRubyObject.class, Block.class));
119119

120-
/** The outward arity-zero call-with-block signature for compiled Ruby method handles. */
120+
/** The outward arity-three call-without-block signature for compiled Ruby method handles. */
121121
private final static String COMPILED_CALL_SIG_THREE = sig(IRubyObject.class,
122122
params(ThreadContext.class, IRubyObject.class, RubyModule.class, String.class, IRubyObject.class, IRubyObject.class, IRubyObject.class));
123123

0 commit comments

Comments
 (0)
Please sign in to comment.