Browse Source

Replaced tab to spaces in do-while description (#2703)

Replaced tab to spaces in do-while description
Yuri Roubinsky 6 năm trước cách đây
mục cha
commit
294fdc7e5c
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      tutorials/shading/shading_reference/shading_language.rst

+ 3 - 3
tutorials/shading/shading_reference/shading_language.rst

@@ -341,10 +341,10 @@ Godot Shading language supports the most common types of flow control:
 
     }
 
-	// do while
-	do {
+    // do while
+    do {
 
-	} while(true);
+    } while(true);
 
 Keep in mind that, in modern GPUs, an infinite loop can exist and can freeze your application (including editor).
 Godot can't protect you from this, so be careful not to make this mistake!