diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2023-06-07 16:39:53 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2023-06-07 16:39:53 -0300 |
commit | c1e5001cf6323be640113378083ddbeee359f905 (patch) | |
tree | b64fca19f583c3b3db1400efee8c13451cae70ab /doc/classes/Thread.xml | |
parent | ea6a141ffffa6de8a27e2093145ececaaa9aa2f6 (diff) | |
download | redot-engine-c1e5001cf6323be640113378083ddbeee359f905.tar.gz |
Remove inaccuracy about re-using `Thread`s in its doc
Diffstat (limited to 'doc/classes/Thread.xml')
-rw-r--r-- | doc/classes/Thread.xml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/classes/Thread.xml b/doc/classes/Thread.xml index a7f33eb539..9ba37a035e 100644 --- a/doc/classes/Thread.xml +++ b/doc/classes/Thread.xml @@ -54,7 +54,6 @@ Joins the [Thread] and waits for it to finish. Returns the output of the [Callable] passed to [method start]. Should either be used when you want to retrieve the value returned from the method called by the [Thread] or before freeing the instance that contains the [Thread]. To determine if this can be called without blocking the calling thread, check if [method is_alive] is [code]false[/code]. - [b]Note:[/b] After the [Thread] finishes joining it will be disposed. If you want to use it again you will have to create a new instance of it. </description> </method> </methods> |