diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-04-05 15:19:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-05 15:19:21 +0200 |
commit | 63d3a42f82d386c94eb9e11641d04ada4150c5e5 (patch) | |
tree | 5617e7270df9be072037c251fc49f4b0f9fb77e4 /doc/classes/Thread.xml | |
parent | 4011429e574a4d7a31725c38d92dd34925487dc7 (diff) | |
parent | d80bc5cbbab71fb9b8f25ec56a0baa5b4cee68a9 (diff) | |
download | redot-engine-63d3a42f82d386c94eb9e11641d04ada4150c5e5.tar.gz |
Merge pull request #27465 from neikeq/road-to-lang-agnostic-docs-is-going-to-be-tough
EditorHelp: Improve enum ref resolving and add constant ref support
Diffstat (limited to 'doc/classes/Thread.xml')
-rw-r--r-- | doc/classes/Thread.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/classes/Thread.xml b/doc/classes/Thread.xml index 683424d512..d2aa1a3f03 100644 --- a/doc/classes/Thread.xml +++ b/doc/classes/Thread.xml @@ -15,14 +15,14 @@ <return type="String"> </return> <description> - Returns the current [code]Thread[/code]s id, uniquely identifying it among all threads. + Returns the current [Thread]s id, uniquely identifying it among all threads. </description> </method> <method name="is_active" qualifiers="const"> <return type="bool"> </return> <description> - Returns true if this [code]Thread[/code] is currently active. An active [code]Thread[/code] cannot start work on a new method but can be joined with [method wait_to_finish]. + Returns true if this [Thread] is currently active. An active [Thread] cannot start work on a new method but can be joined with [method wait_to_finish]. </description> </method> <method name="start"> @@ -37,7 +37,7 @@ <argument index="3" name="priority" type="int" default="1"> </argument> <description> - Starts a new [code]Thread[/code] that runs "method" on object "instance" with "userdata" passed as an argument. The "priority" of the [code]Thread[/code] can be changed by passing a PRIORITY_* enum. + Starts a new [Thread] that runs "method" on object "instance" with "userdata" passed as an argument. The "priority" of the [Thread] can be changed by passing a PRIORITY_* enum. Returns OK on success, or ERR_CANT_CREATE on failure. </description> </method> @@ -45,7 +45,7 @@ <return type="Variant"> </return> <description> - Joins the [code]Thread[/code] and waits for it to finish. Returns what the method called returned. + Joins the [Thread] and waits for it to finish. Returns what the method called returned. </description> </method> </methods> |