Преглед изворни кода

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());
         }