Skip to content

Commit adb603a

Browse files
committed
Fix Typo
1 parent 675078a commit adb603a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/Script Tester/Editor/ComponentMethodDrawer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ string GetMethodNameFormatted(ComponentMethod m, int i) {
256256
name = "[Constructor]";
257257
} else {
258258
method = m.method;
259-
name = Helper.GetMemberName(method as MemberInfo).replace('_', ' ');
259+
name = Helper.GetMemberName(method as MemberInfo).Replace('_', ' ');
260260
}
261261
var result = string.Format("{0:000} {1} ({2})", i + 1, name, Helper.JoinStringList(null, method.GetParameters().Select(x => x.ParameterType.Name), ", "));
262262
return result;

0 commit comments

Comments
 (0)