@@ -167,11 +167,12 @@ internal MethodBase[] GetMethods()
167
167
}
168
168
169
169
/// <summary>
170
- /// Precedence algorithm largely lifted fromjython - the concerns are
171
- /// generally the same so we'll startw/ this and tweak as necessary.
170
+ /// Precedence algorithm largely lifted fromJython - the concerns are
171
+ /// generally the same so we'll startwith this and tweak as necessary.
172
172
/// </summary>
173
173
/// <remarks>
174
- /// TODO: Add link to specific Jython Section/Code/File
174
+ /// Based from Jython `org.python.core.ReflectedArgs.precedence`
175
+ /// See: https://github.com/jythontools/jython/blob/master/src/org/python/core/ReflectedArgs.java#L192
175
176
/// </remarks>
176
177
internal static int GetPrecedence ( MethodBase mi )
177
178
{
@@ -328,7 +329,7 @@ internal Binding Bind(IntPtr inst, IntPtr args, IntPtr kw, MethodBase info, Meth
328
329
else if ( pynargs > clrnargs && clrnargs > 0 &&
329
330
Attribute . IsDefined ( pi [ clrnargs - 1 ] , typeof ( ParamArrayAttribute ) ) )
330
331
{
331
- // This is aspam (params object[]egg) style method
332
+ // This is a`foo (params object[]bar)` style method
332
333
match = true ;
333
334
arrayStart = clrnargs - 1 ;
334
335
}