summaryrefslogtreecommitdiffstats
path: root/doc/classes/Semaphore.xml
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-04-05 15:19:21 +0200
committerGitHub <noreply@github.com>2019-04-05 15:19:21 +0200
commit63d3a42f82d386c94eb9e11641d04ada4150c5e5 (patch)
tree5617e7270df9be072037c251fc49f4b0f9fb77e4 /doc/classes/Semaphore.xml
parent4011429e574a4d7a31725c38d92dd34925487dc7 (diff)
parentd80bc5cbbab71fb9b8f25ec56a0baa5b4cee68a9 (diff)
downloadredot-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/Semaphore.xml')
-rw-r--r--doc/classes/Semaphore.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/Semaphore.xml b/doc/classes/Semaphore.xml
index 8263e932e3..3b5c7f3b59 100644
--- a/doc/classes/Semaphore.xml
+++ b/doc/classes/Semaphore.xml
@@ -15,14 +15,14 @@
<return type="int" enum="Error">
</return>
<description>
- Lowers the [code]Semaphore[/code], allowing one more thread in. Returns [code]OK[/code] on success, [code]ERR_BUSY[/code] otherwise.
+ Lowers the [Semaphore], allowing one more thread in. Returns [code]OK[/code] on success, [code]ERR_BUSY[/code] otherwise.
</description>
</method>
<method name="wait">
<return type="int" enum="Error">
</return>
<description>
- Tries to wait for the [code]Semaphore[/code], if its value is zero, blocks until non-zero. Returns [code]OK[/code] on success, [code]ERR_BUSY[/code] otherwise.
+ Tries to wait for the [Semaphore], if its value is zero, blocks until non-zero. Returns [code]OK[/code] on success, [code]ERR_BUSY[/code] otherwise.
</description>
</method>
</methods>