diff options
author | VolTer <mew.pur.pur@abv.bg> | 2023-04-28 01:35:33 +0200 |
---|---|---|
committer | VolTer <mew.pur.pur@abv.bg> | 2023-05-19 07:04:48 +0200 |
commit | 04562662d38a83e1ac1fde2af9572ca38147e772 (patch) | |
tree | 135faa9bef16bdb14faf576c25cb832f74d02fb4 /doc/classes/Signal.xml | |
parent | 5bb7d585a5e151f3fa387de7dd97d7aebc5abfd5 (diff) | |
download | redot-engine-04562662d38a83e1ac1fde2af9572ca38147e772.tar.gz |
Overhaul the top sections of the class reference (Core classes)
Diffstat (limited to 'doc/classes/Signal.xml')
-rw-r--r-- | doc/classes/Signal.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Signal.xml b/doc/classes/Signal.xml index 79a009e00e..ada533153c 100644 --- a/doc/classes/Signal.xml +++ b/doc/classes/Signal.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8" ?> <class name="Signal" version="4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> <brief_description> - Built-in type representing a signal defined in an object. + A built-in type representing a signal of an [Object]. </brief_description> <description> [Signal] is a built-in [Variant] type that represents a signal of an [Object] instance. Like all [Variant] types, it can be stored in variables and passed to functions. Signals allow all connected [Callable]s (and by extension their respective objects) to listen and react to events, without directly referencing one another. This keeps the code flexible and easier to manage. |