diff --git a/doc/base/classes.xml b/doc/base/classes.xml
index 9c3b8a27041..0fbb39def0f 100644
--- a/doc/base/classes.xml
+++ b/doc/base/classes.xml
@@ -19259,20 +19259,31 @@
+ A script implemented in the GDScript programming language.
+ A script implemented in the GDScript programming language. The script exends the functionality of all objects that instance it.
+ [method new] creates a new instance of the script. [method Object.set_script] extends an existing object, if that object's class matches one of the script's base classes.
+ Returns byte code for the script source code.
+ Returns a new instance of the script.
+ For example:
+ [codeblock]
+ var MyClass = load("myclass.gd")
+ var instance = MyClass.new()
+ assert(instance.get_script() == MyClass)
+ [/codeblock]
@@ -44449,17 +44460,18 @@
- Base class for scripts.
+ A class stored as a resource.
- Base class for scripts. Any script that is loaded becomes one of these resources, which can then create instances.
+ A class stored as a resource. The script exends the functionality of all objects that instance it.
+ The 'new' method of a script subclass creates a new instance. [method Object.set_script] extends an existing object, if that object's class matches one of the script's base classes.
- Return true if this script can be instance (ie not a library).
+ Returns true if the script can be instanced.
@@ -44472,7 +44484,7 @@
- Return the script source code (if available).
+ Returns the script source code, or an empty string if source code is not available.
@@ -44481,13 +44493,14 @@
+ Returns true if the script, or a base class, defines a signal with the given name.
- Return true if the script contains source code.
+ Returns true if the script contains non-empty source code.
@@ -44496,21 +44509,24 @@
- Return true if a given object uses an instance of this script.
+ Returns true if 'base_object' is an instance of this script.
+ Returns true if the script is a tool script. A tool script can run in the editor.
+ If true, preserve existing script instances and subclasses.
+ Reloads the script's class implementation. Returns an error code.
@@ -44519,7 +44535,7 @@
- Set the script source code.
+ Sets the script source code. Does not reload the class implementation.