浏览代码

Replaced tab to spaces in do-while description

(sorry)
Yuri Roubinski 6 年之前
父节点
当前提交
a7362fb460
共有 1 个文件被更改,包括 3 次插入3 次删除
  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!