diff options
author | Andy Maloney <asmaloney@gmail.com> | 2022-08-09 11:19:47 -0400 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2022-08-11 16:13:29 +0300 |
commit | 2d54c36c3c4e55f2ca32305e64fdf574f5d368e8 (patch) | |
tree | 2f59dedf956494f3340d1befad269fd584f093c8 /doc/classes/Thread.xml | |
parent | e9e9e92e4864f9dc34e24f37cb93c88cc3649104 (diff) | |
download | redot-engine-2d54c36c3c4e55f2ca32305e64fdf574f5d368e8.tar.gz |
[doc] Use "param" instead of "code" to refer to parameters
Diffstat (limited to 'doc/classes/Thread.xml')
-rw-r--r-- | doc/classes/Thread.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/Thread.xml b/doc/classes/Thread.xml index 6bc34ed8dd..846dae0bae 100644 --- a/doc/classes/Thread.xml +++ b/doc/classes/Thread.xml @@ -37,9 +37,9 @@ <param index="0" name="callable" type="Callable" /> <param index="1" name="priority" type="int" enum="Thread.Priority" default="1" /> <description> - Starts a new [Thread] that calls [code]callable[/code]. + Starts a new [Thread] that calls [param callable]. If the method takes some arguments, you can pass them using [method Callable.bind]. - The [code]priority[/code] of the [Thread] can be changed by passing a value from the [enum Priority] enum. + The [param priority] of the [Thread] can be changed by passing a value from the [enum Priority] enum. Returns [constant OK] on success, or [constant ERR_CANT_CREATE] on failure. </description> </method> |