diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-30 13:27:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-30 13:27:24 +0200 |
commit | 718db9b396f8bdfef8fc1855e91317d39d076189 (patch) | |
tree | ab717076fecc7b76bad36a159a1fa147d64d4d94 /doc | |
parent | 35ff38b3d4336b757bce714477bf5ed61b0cd7f3 (diff) | |
parent | f50a4b8a3b30ed49757e7a8b180ef6a14ff0260a (diff) |
Merge pull request #40873 from Calinou/doc-thread-safe-apis
Link to Thread-safe APIs in the Thread class documentation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/Thread.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/Thread.xml b/doc/classes/Thread.xml index 4d6e89fa6f..5c63d01322 100644 --- a/doc/classes/Thread.xml +++ b/doc/classes/Thread.xml @@ -7,7 +7,8 @@ A unit of execution in a process. Can run methods on [Object]s simultaneously. The use of synchronization via [Mutex] or [Semaphore] is advised if working with shared objects. </description> <tutorials> - <link>https://docs.godotengine.org/en/latest/tutorials/threads/using_multiple_threads.html</link> + <link title="Using multiple threads">https://docs.godotengine.org/en/latest/tutorials/threads/using_multiple_threads.html</link> + <link title="Thread-safe APIs">https://docs.godotengine.org/en/latest/tutorials/threads/thread_safe_apis.html</link> </tutorials> <methods> <method name="get_id" qualifiers="const"> |