diff options
| author | Rémi Verschelde | 2017-09-17 18:57:13 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2017-09-17 18:57:17 +0200 |
| commit | 574a5714dcbf5fcf126f3f99caab62a345e665c1 (patch) | |
| tree | fd213f0300b118ba042f5e83d9aafdbe33feb170 /doc/classes/@GDScript.xml | |
| parent | 07d18a00763855908856bdaee868bd4ca8deb52f (diff) | |
| download | godot-574a5714dcbf5fcf126f3f99caab62a345e665c1.tar.gz godot-574a5714dcbf5fcf126f3f99caab62a345e665c1.tar.zst godot-574a5714dcbf5fcf126f3f99caab62a345e665c1.zip | |
doc: Sync classref and escape comparators
[ci skip]
Diffstat (limited to 'doc/classes/@GDScript.xml')
| -rw-r--r-- | doc/classes/@GDScript.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/classes/@GDScript.xml b/doc/classes/@GDScript.xml index 511109e61..7b120afa5 100644 --- a/doc/classes/@GDScript.xml +++ b/doc/classes/@GDScript.xml @@ -96,9 +96,9 @@ [codeblock] # Speed should always be between 0 and 20 speed = -10 - assert(speed < 20) # Is true and program continues - assert(speed >= 0) # Is false and program stops - assert(speed >= 0 && speed < 20) # Or combined + assert(speed < 20) # Is true and program continues + assert(speed >= 0) # Is false and program stops + assert(speed >= 0 && speed < 20) # Or combined [/codeblock] </description> </method> @@ -360,7 +360,7 @@ Returns the floating-point remainder of x/y that wraps equally in positive and negative. [codeblock] var i = -10; - while i < 0: + while i < 0: prints(i, fposmod(i, 10)) i += 1 [/codeblock] |
