From 265c67ea6e6568c7349487eb5a9e8e06752e49a4 Mon Sep 17 00:00:00 2001 From: Ryan Winchester Date: Thu, 18 Apr 2024 22:34:48 -0300 Subject: [PATCH] update comment --- lib/clock.ex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/clock.ex b/lib/clock.ex index 14bac29..54522a3 100644 --- a/lib/clock.ex +++ b/lib/clock.ex @@ -52,7 +52,8 @@ defmodule UUIDv7.Clock do # Rollover protection. # If the counter is over the allotted bits, then we update the timestamp - # by 1 millisecond to preserve order, which will also reset the counter. + # by 1 millisecond to preserve order, which will also reset the counter + # using the provided seed value. clock = with @max_counter <- update_counter(current_ts, seed) do next_ts = current_ts + 1