From ecf0948f3550c272c098235ba860914a4f65c881 Mon Sep 17 00:00:00 2001 From: Jummit Date: Sat, 19 Dec 2020 18:40:15 +0100 Subject: [PATCH] Remove semicolons from GDScript example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e960be63..301add93 100644 --- a/README.md +++ b/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++