Unverified Commit cf398b8e by Rémi Verschelde Committed by GitHub

Merge pull request #38392 from Enhex/patch-1

fix typo
parents ec542db7 aaf5a58b
...@@ -1177,10 +1177,10 @@ ...@@ -1177,10 +1177,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">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment