Selaa lähdekoodia

GDScript: Comment out part about multiline comments

Should fix #89.
Rémi Verschelde 9 vuotta sitten
vanhempi
commit
4fdbdd256c
1 muutettua tiedostoa jossa 10 lisäystä ja 8 poistoa
  1. 10 8
      reference/gdscript.rst

+ 10 - 8
reference/gdscript.rst

@@ -264,14 +264,16 @@ considered a comment.
 
     # This is a comment
 
-Multi-line comments can be created using """ (three quotes in a row) at
-the beginning and end of a block of text.
-
-::
-
-    """ Everything on these 
-    lines is considered
-    a comment """
+..  Uncomment me if/when https://github.com/godotengine/godot/issues/1320 gets fixed
+    
+    Multi-line comments can be created using """ (three quotes in a row) at
+    the beginning and end of a block of text.
+    
+    ::
+    
+        """ Everything on these 
+        lines is considered
+        a comment """
 
 Built-in types
 --------------