better words

This commit is contained in:
bobbahbrown
2020-07-22 00:57:58 -03:00
parent ca64e6fcd2
commit 28370750c1

View File

@@ -12,9 +12,9 @@
* *
* Handles creation, callbacks, and destruction of timed events. * Handles creation, callbacks, and destruction of timed events.
* *
* It is important to understand the buckets used in the timer subsystem are just a circular doubly-linked list. The * It is important to understand the buckets used in the timer subsystem are just a series of circular doubly-linked
* object at a given index in the bucket list is a /datum/timedevent, the head of the list, which has prev and next * lists. The object at a given index in bucket_list is a /datum/timedevent, the head of a circular list, which has prev
* references for the respective elements in that buckets circular list. * and next references for the respective elements in that bucket's circular list.
*/ */
SUBSYSTEM_DEF(timer) SUBSYSTEM_DEF(timer)
name = "Timer" name = "Timer"