From 71e14012e44ad79c5898e391617bcde68d45ee2d Mon Sep 17 00:00:00 2001 From: sheepandshepherd Date: Sun, 6 Oct 2019 06:07:37 +0200 Subject: [PATCH] Fix a function name in GDNative C tutorial --- tutorials/plugins/gdnative/gdnative-c-example.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/plugins/gdnative/gdnative-c-example.rst b/tutorials/plugins/gdnative/gdnative-c-example.rst index 7ad10f247..cd30b6106 100644 --- a/tutorials/plugins/gdnative/gdnative-c-example.rst +++ b/tutorials/plugins/gdnative/gdnative-c-example.rst @@ -429,7 +429,7 @@ globally will be accessible from any instance of your object you create. If time a script accesses the library. If *Singleton* is enabled, our library is automatically loaded and a function -called ``godot_singleton_init`` is called. We'll leave that for another +called ``godot_gdnative_singleton`` is called. We'll leave that for another tutorial. The *Symbol Prefix* is a prefix for our core functions, such as ``godot_`` in