Skip to content

Commit

Permalink
Merge pull request #80303 from raulsntos/dotnet/warnings/CS1572
Browse files Browse the repository at this point in the history
C#: Fix typo in parameter name in documentation
  • Loading branch information
akien-mga committed Aug 7, 2023
2 parents e43ae7c + 958a6cd commit 750f1a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/mono/editor/bindings_generator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1767,7 +1767,7 @@ Error BindingsGenerator::_generate_cs_type(const TypeInterface &itype, const Str
<< INDENT1 "/// This method is used by Godot to check if a signal exists before raising it.\n"
<< INDENT1 "/// Do not call or override this method.\n"
<< INDENT1 "/// </summary>\n"
<< INDENT1 "/// <param name=\"method\">Name of the method to check for.</param>\n";
<< INDENT1 "/// <param name=\"signal\">Name of the signal to check for.</param>\n";

output << MEMBER_BEGIN "protected internal " << (is_derived_type ? "override" : "virtual")
<< " bool " CS_METHOD_HAS_GODOT_CLASS_SIGNAL "(in godot_string_name signal)\n"
Expand Down

0 comments on commit 750f1a6

Please sign in to comment.