From 28370750c16b5acebc87cb87b9eef901b927e820 Mon Sep 17 00:00:00 2001 From: bobbahbrown Date: Wed, 22 Jul 2020 00:57:58 -0300 Subject: [PATCH] better words --- code/controllers/subsystem/timer.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/controllers/subsystem/timer.dm b/code/controllers/subsystem/timer.dm index 22a175d80af..99a9a8613a0 100644 --- a/code/controllers/subsystem/timer.dm +++ b/code/controllers/subsystem/timer.dm @@ -12,9 +12,9 @@ * * 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 - * object at a given index in the bucket list is a /datum/timedevent, the head of the list, which has prev and next - * references for the respective elements in that buckets circular list. + * It is important to understand the buckets used in the timer subsystem are just a series of circular doubly-linked + * lists. The object at a given index in bucket_list is a /datum/timedevent, the head of a circular list, which has prev + * and next references for the respective elements in that bucket's circular list. */ SUBSYSTEM_DEF(timer) name = "Timer"