From 34d9d10c1bfbb5e138cd70f4d4df69bda35bd199 Mon Sep 17 00:00:00 2001 From: Lukas Fletcher <66425672+Lukas-Fletcher@users.noreply.github.com> Date: Sat, 24 Aug 2024 16:33:12 +0200 Subject: [PATCH] remove article before plural noun in autoloads_versus_internal_nodes.rst remove 'a' from "share a variables" --- tutorials/best_practices/autoloads_versus_internal_nodes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/best_practices/autoloads_versus_internal_nodes.rst b/tutorials/best_practices/autoloads_versus_internal_nodes.rst index 48664a26a59..2f8b10a92a9 100644 --- a/tutorials/best_practices/autoloads_versus_internal_nodes.rst +++ b/tutorials/best_practices/autoloads_versus_internal_nodes.rst @@ -87,7 +87,7 @@ limitation of static functions is that they can't reference member variables, non-static functions or ``self``. Since Godot 4.1, GDScript also supports ``static`` variables using ``static var``. -This means you can now share a variables across instances of a class without +This means you can now share variables across instances of a class without having to create a separate autoload. Still, autoloaded nodes can simplify your code for systems with a wide scope. If