ClassRef: Replace [code]CurrentClass[/code] with [CurrentClass]

Modified makerst to generate code tags for these to avoid hyperlinks to the same class.
This commit is contained in:
Ignacio Etcheverry
2019-03-29 23:37:35 +01:00
parent c8aa85189a
commit d80bc5cbba
80 changed files with 261 additions and 257 deletions

View File

@ -15,21 +15,21 @@
<return type="void">
</return>
<description>
Lock this [code]Mutex[/code], blocks until it is unlocked by the current owner.
Lock this [Mutex], blocks until it is unlocked by the current owner.
</description>
</method>
<method name="try_lock">
<return type="int" enum="Error">
</return>
<description>
Try locking this [code]Mutex[/code], does not block. Returns [code]OK[/code] on success, [code]ERR_BUSY[/code] otherwise.
Try locking this [Mutex], does not block. Returns [code]OK[/code] on success, [code]ERR_BUSY[/code] otherwise.
</description>
</method>
<method name="unlock">
<return type="void">
</return>
<description>
Unlock this [code]Mutex[/code], leaving it to other threads.
Unlock this [Mutex], leaving it to other threads.
</description>
</method>
</methods>