You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +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:
@@ -106,15 +106,15 @@ uint32_t XRInterfaceExtension::get_capabilities() const {
|
||||
}
|
||||
|
||||
bool XRInterfaceExtension::is_initialized() const {
|
||||
bool initialised = false;
|
||||
GDVIRTUAL_CALL(_is_initialized, initialised);
|
||||
return initialised;
|
||||
bool initialized = false;
|
||||
GDVIRTUAL_CALL(_is_initialized, initialized);
|
||||
return initialized;
|
||||
}
|
||||
|
||||
bool XRInterfaceExtension::initialize() {
|
||||
bool initialised = false;
|
||||
GDVIRTUAL_CALL(_initialize, initialised);
|
||||
return initialised;
|
||||
bool initialized = false;
|
||||
GDVIRTUAL_CALL(_initialize, initialized);
|
||||
return initialized;
|
||||
}
|
||||
|
||||
void XRInterfaceExtension::uninitialize() {
|
||||
|
||||
Reference in New Issue
Block a user