Fix missing quote in documentation

(cherry picked from commit aaf5a58b44)
This commit is contained in:
Enhex 2020-05-01 18:52:08 +03:00 committed by Rémi Verschelde
parent 8a02f221b4
commit 7ec83ccb9f
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 2 additions and 2 deletions

View File

@ -1174,10 +1174,10 @@
[codeblock]
var err = method_that_returns_error()
if err != OK:
print("Failure!)
print("Failure!")
# Or, equivalent:
if err:
print("Still failing!)
print("Still failing!")
[/codeblock]
</constant>
<constant name="FAILED" value="1" enum="Error">