Merge pull request #32403 from yeonghoey/enforce4space

Print errors when tab indent found in [codeblock]
This commit is contained in:
Rémi Verschelde 2019-10-03 08:41:21 +02:00 committed by GitHub
commit c9781df316
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 8 deletions

View file

@ -69,7 +69,7 @@
[codeblock]
{
"content-length": 12,
"Content-Type": "application/json; charset=UTF-8",
"Content-Type": "application/json; charset=UTF-8",
}
[/codeblock]
</description>

View file

@ -69,9 +69,9 @@
Commonly used to create a one-shot delay timer as in the following example:
[codeblock]
func some_function():
print("start")
yield(get_tree().create_timer(1.0), "timeout")
print("end")
print("start")
yield(get_tree().create_timer(1.0), "timeout")
print("end")
[/codeblock]
</description>
</method>