diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-03 18:17:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-03 18:17:30 +0200 |
commit | cf398b8ee0442c6fd3b100740a4a87c908f68751 (patch) | |
tree | ce46c34d42dd28bbd78ea03f703a7e88ad731117 | |
parent | ec542db7821b2d672b5cd008009932499804d584 (diff) | |
parent | aaf5a58b4454246183b34f45bc1b4dd504446181 (diff) |
Merge pull request #38392 from Enhex/patch-1
fix typo
-rw-r--r-- | doc/classes/@GlobalScope.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/@GlobalScope.xml b/doc/classes/@GlobalScope.xml index b3cd1c1af7..602ad43103 100644 --- a/doc/classes/@GlobalScope.xml +++ b/doc/classes/@GlobalScope.xml @@ -1177,10 +1177,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"> |