Sfoglia il codice sorgente

Merge pull request #110557 from Splizard/fix-dump-extension-api-with-docs-indentation

Fix `--dump-extension-api-with-docs` indentation
Thaddeus Crews 4 settimane fa
parent
commit
fb23f7d175
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      core/extension/extension_api_dump.cpp

+ 1 - 1
core/extension/extension_api_dump.cpp

@@ -96,7 +96,7 @@ static String fix_doc_description(const String &p_bbcode) {
 	// Based on what EditorHelp does.
 
 	return p_bbcode.dedent()
-			.remove_chars("\t\r")
+			.remove_chars("\r")
 			.strip_edges();
 }