Fix missing quote in documentation
(cherry picked from commit aaf5a58b44
)
This commit is contained in:
parent
8a02f221b4
commit
7ec83ccb9f
|
@ -1174,10 +1174,10 @@
|
||||||
[codeblock]
|
[codeblock]
|
||||||
var err = method_that_returns_error()
|
var err = method_that_returns_error()
|
||||||
if err != OK:
|
if err != OK:
|
||||||
print("Failure!)
|
print("Failure!")
|
||||||
# Or, equivalent:
|
# Or, equivalent:
|
||||||
if err:
|
if err:
|
||||||
print("Still failing!)
|
print("Still failing!")
|
||||||
[/codeblock]
|
[/codeblock]
|
||||||
</constant>
|
</constant>
|
||||||
<constant name="FAILED" value="1" enum="Error">
|
<constant name="FAILED" value="1" enum="Error">
|
||||||
|
|
Loading…
Reference in New Issue