Browse Source

Merge pull request #484 from Jummit/patch-1

Remove semicolons from GDScript example
Hugo Locurcio 4 years ago
parent
commit
01c003dfed
1 changed files with 2 additions and 2 deletions
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -292,8 +292,8 @@ platform-independent manner.
 Once your GDNative library is compiled and referenced in a `.gdns` file, you can use it in GDScript or C#. Here's an example with GDScript:
 
 ```gdscript
-var simpleclass = load("res://simpleclass.gdns").new();
-simpleclass.method("Test argument");
+var simpleclass = load("res://simpleclass.gdns").new()
+simpleclass.method("Test argument")
 ```
 
 ### Using Godot classes in C++