summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-07-22 17:15:09 +0200
committerGitHub <noreply@github.com>2021-07-22 17:15:09 +0200
commit5de991d57c44d68221c68cf4996831a3b6a3e9e1 (patch)
tree7991fe82896bdf786b179d992256fe32ee4f0f7f
parent3b9b207cbefcaca7145ecc8b9372b312c6d338d7 (diff)
parent44eb041d607f71c40cb3c30ffb8e0d80d342a1fc (diff)
Merge pull request #50736 from JulienVanelian/msec-doc-typo-fix
Fix delay_msec documentation description typo
-rw-r--r--doc/classes/OS.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/OS.xml b/doc/classes/OS.xml
index a9396306f4..4cbbf4e238 100644
--- a/doc/classes/OS.xml
+++ b/doc/classes/OS.xml
@@ -54,7 +54,7 @@
<argument index="0" name="msec" type="int">
</argument>
<description>
- Delay execution of the current thread by [code]msec[/code] milliseconds. [code]usec[/code] must be greater than or equal to [code]0[/code]. Otherwise, [method delay_msec] will do nothing and will print an error message.
+ Delay execution of the current thread by [code]msec[/code] milliseconds. [code]msec[/code] must be greater than or equal to [code]0[/code]. Otherwise, [method delay_msec] will do nothing and will print an error message.
</description>
</method>
<method name="delay_usec" qualifiers="const">