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
cce9204a48
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

@@ -525,7 +525,7 @@ accesses:
             _child.MyMethod();
         }
 
-        public void PrintMe() {
+        public void PrintMe()
         {
             GD.Print(Name);
         }