Browse Source

Fix missing quote in documentation

(cherry picked from commit aaf5a58b4454246183b34f45bc1b4dd504446181)
Enhex 5 years ago
parent
commit
7ec83ccb9f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      doc/classes/@GlobalScope.xml

+ 2 - 2
doc/classes/@GlobalScope.xml

@@ -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">