From 63e2aba3fd8a2e2a68876c5eb16cde23ac71f91a Mon Sep 17 00:00:00 2001 From: DeeJayLSP <60024671+DeeJayLSP@users.noreply.github.com> Date: Thu, 7 Oct 2021 21:16:59 -0300 Subject: [PATCH] Fix RefCounted description If the class name is modified, its name in the description should be too. However, pluralization is a bit complicated in this case. I'll give the options `RefCounteds` and `reference-counted objects`. Maybe both can be used. --- doc/classes/RefCounted.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/classes/RefCounted.xml b/doc/classes/RefCounted.xml index d965d2ea10..de314fbcb7 100644 --- a/doc/classes/RefCounted.xml +++ b/doc/classes/RefCounted.xml @@ -5,9 +5,9 @@ Base class for any object that keeps a reference count. [Resource] and many other helper objects inherit this class. - Unlike other [Object] types, References keep an internal reference counter so that they are automatically released when no longer in use, and only then. References therefore do not need to be freed manually with [method Object.free]. + Unlike other [Object] types, [RefCounted]s keep an internal reference counter so that they are automatically released when no longer in use, and only then. [RefCounted]s therefore do not need to be freed manually with [method Object.free]. In the vast majority of use cases, instantiating and using [RefCounted]-derived types is all you need to do. The methods provided in this class are only for advanced users, and can cause issues if misused. - [b]Note:[/b] In C#, references will not be freed instantly after they are no longer in use. Instead, garbage collection will run periodically and will free references that are no longer in use. This means that unused references will linger on for a while before being removed. + [b]Note:[/b] In C#, reference-counted objects will not be freed instantly after they are no longer in use. Instead, garbage collection will run periodically and will free reference-counted objects that are no longer in use. This means that unused ones will linger on for a while before being removed. https://docs.godotengine.org/en/latest/tutorials/best_practices/node_alternatives.html