Browse Source

Update godot_interfaces.rst

One too many open curly bracket "{".

Wrong
        public void PrintMe() {

Correct
        public void PrintMe()
cabbagestole 1 year ago
parent
commit
053de3b605
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tutorials/best_practices/godot_interfaces.rst

+ 1 - 1
tutorials/best_practices/godot_interfaces.rst

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