You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Style: Misc docs and comment style and language fixes
- Removed empty paragraphs in XML. - Consistently use bold style for "Example:", on a new line. - Fix usage of `[code]` when hyperlinks could be used (`[member]`, `[constant]`). - Fix invalid usage of backticks for inline code in BBCode. - Fix some American/British English spelling inconsistencies. - Other minor fixes spotted along the way, including typo fixes with codespell. - Don't specify `@GlobalScope` for `enum` and `constant`.
This commit is contained in:
@@ -375,7 +375,7 @@ void EditorHelp::_add_method(const DocData::MethodDoc &p_method, bool p_overview
|
||||
if (qualifier == "vararg") {
|
||||
hint = TTR("This method supports a variable number of arguments.");
|
||||
} else if (qualifier == "virtual") {
|
||||
hint = TTR("This method is called by the engine.\nIt can be overriden to customise built-in behavior.");
|
||||
hint = TTR("This method is called by the engine.\nIt can be overridden to customize built-in behavior.");
|
||||
} else if (qualifier == "const") {
|
||||
hint = TTR("This method has no side effects.\nIt does not modify the object in any way.");
|
||||
} else if (qualifier == "static") {
|
||||
|
||||
Reference in New Issue
Block a user