summaryrefslogtreecommitdiffstats
path: root/doc/classes/Timer.xml
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-12-20 13:46:54 +0100
committerRémi Verschelde <rverschelde@gmail.com>2018-12-20 13:47:12 +0100
commit6cdcde7114a7b12063d2d4b720583d6094d66c85 (patch)
tree18e5a9d0a612b99f61bf4324afa52fae28953a53 /doc/classes/Timer.xml
parentd8067e905c031df9abe475c966fe389b03036036 (diff)
downloadredot-engine-6cdcde7114a7b12063d2d4b720583d6094d66c85.tar.gz
doc: Add missing commas after "If true/false"
Diffstat (limited to 'doc/classes/Timer.xml')
-rw-r--r--doc/classes/Timer.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/classes/Timer.xml b/doc/classes/Timer.xml
index 65d638c4c0..1d9b08cbd6 100644
--- a/doc/classes/Timer.xml
+++ b/doc/classes/Timer.xml
@@ -38,13 +38,13 @@
</methods>
<members>
<member name="autostart" type="bool" setter="set_autostart" getter="has_autostart">
- If [code]true[/code] the timer will automatically start when entering the scene tree. Default value: [code]false[/code].
+ If [code]true[/code], the timer will automatically start when entering the scene tree. Default value: [code]false[/code].
</member>
<member name="one_shot" type="bool" setter="set_one_shot" getter="is_one_shot">
- If [code]true[/code] the timer will stop when reaching 0. If [code]false[/code] it will restart. Default value: [code]false[/code].
+ If [code]true[/code], the timer will stop when reaching 0. If [code]false[/code], it will restart. Default value: [code]false[/code].
</member>
<member name="paused" type="bool" setter="set_paused" getter="is_paused">
- If [code]true[/code] the timer is paused and will not process until it is unpaused again, even if [method start] is called.
+ If [code]true[/code], the timer is paused and will not process until it is unpaused again, even if [method start] is called.
</member>
<member name="process_mode" type="int" setter="set_timer_process_mode" getter="get_timer_process_mode" enum="Timer.TimerProcessMode">
Processing mode. See [enum TimerProcessMode].