Skip to content

Commit

Permalink
Fix Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JLChnToZ committed Oct 15, 2015
1 parent 675078a commit adb603a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Script Tester/Editor/ComponentMethodDrawer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ string GetMethodNameFormatted(ComponentMethod m, int i) {
name = "[Constructor]";
} else {
method = m.method;
name = Helper.GetMemberName(method as MemberInfo).replace('_', ' ');
name = Helper.GetMemberName(method as MemberInfo).Replace('_', ' ');
}
var result = string.Format("{0:000} {1} ({2})", i + 1, name, Helper.JoinStringList(null, method.GetParameters().Select(x => x.ParameterType.Name), ", "));
return result;
Expand Down

0 comments on commit adb603a

Please sign in to comment.