[Docs] Remove double-spaces from descriptions, as well a couple other small fixes

This commit is contained in:
LikeLakers2 2018-09-22 17:50:45 -04:00
parent 2613e59f59
commit eaac1e3b81
20 changed files with 33 additions and 33 deletions

View File

@ -373,7 +373,7 @@
<description>
Returns the floating-point remainder of [code]x/y[/code] that wraps equally in positive and negative.
[codeblock]
var i = -10;
var i = -10
while i &lt; 0:
prints(i, fposmod(i, 10))
i += 1

View File

@ -74,7 +74,7 @@
<argument index="1" name="texture" type="Texture">
</argument>
<description>
Sets the [Texture] of the piece with index "idx" to "ofs".
Sets the [Texture] of the piece with index "idx" to "texture".
</description>
</method>
<method name="set_size">

View File

@ -11,7 +11,7 @@
var scene = PackedScene.new()
var result = scene.pack(child)
if result == OK:
ResourceSaver.save("res://path/name.scn", scene) // or user://...
ResourceSaver.save("res://path/name.scn", scene) # or user://...
[/codeblock]
</description>
<tutorials>