Remove unnecessary extra spaces before comments in code examples.

This commit is contained in:
Michael Alexsander
2020-01-23 14:41:49 -03:00
parent 1c0995d450
commit c4745c96d7
7 changed files with 24 additions and 24 deletions
+2 -2
View File
@@ -12,8 +12,8 @@
Property membership can be tested directly in GDScript using [code]in[/code]:
[codeblock]
var n = Node2D.new()
print("position" in n) # Prints "True".
print("other_property" in n) # Prints "False".
print("position" in n) # Prints "True".
print("other_property" in n) # Prints "False".
[/codeblock]
Objects also receive notifications. Notifications are a simple way to notify the object about different events, so they can all be handled together. See [method _notification].
</description>