ソースを参照

Update godot_interfaces.rst

One too many open curly bracket "{".

Wrong
        public void PrintMe() {

Correct
        public void PrintMe()
cabbagestole 1 年間 前
コミット
053de3b605
1 ファイル変更1 行追加1 行削除
  1. 1 1
      tutorials/best_practices/godot_interfaces.rst

+ 1 - 1
tutorials/best_practices/godot_interfaces.rst

@@ -504,7 +504,7 @@ accesses:
             Child.MyMethod();
         }
 
-        public void PrintMe() {
+        public void PrintMe()
         {
             GD.Print(GetClass());
         }