Skip to content

Commit 00e5ddb

Browse files
committed
fixed typo
1 parent bce9798 commit 00e5ddb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/runtime/methodbinding.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public static IntPtr mp_subscript(IntPtr tp, IntPtr idx)
6060
return mb.pyHandle;
6161
}
6262

63-
PyObject Singature {
63+
PyObject Signature {
6464
get {
6565
var infos = this.info == null ? this.m.info : new[] {this.info};
6666
var type = infos.Select(i => i.DeclaringType)
@@ -140,7 +140,7 @@ public static IntPtr tp_getattro(IntPtr ob, IntPtr key)
140140
var om = new OverloadMapper(self.m, self.target);
141141
return om.pyHandle;
142142
case "__signature__":
143-
var sig = self.Singature;
143+
var sig = self.Signature;
144144
if (sig is null)
145145
{
146146
return Runtime.PyObject_GenericGetAttr(ob, key);

0 commit comments

Comments
 (0)