31 | @@ -31,10 +32,9 @@ using SteadyMicroseconds = std::chrono::time_point<std::chrono::steady_clock, st
32 |
33 | using SystemClock = std::chrono::system_clock;
34 |
35 | -/**
36 | - * Version of SteadyClock that is mockable in the context of tests (set the
37 | - * current value with SetMockTime), otherwise the system steady clock.
38 | - */
39 | +/// Version of SteadyClock that is mockable in the context of tests (via
40 | +/// SteadyClockContext, or self.SetMockTime), otherwise the system steady
nit: The LLM linter caught self.SetMockTime in the doc comment, however the suggested fix seems off since it shouldn't use the global ::SetMockTime. Not blocking, but if you need another push you can update to MockableSteadyClock::SetMockTime.
I didn't want to repeat the class name, but I see it is static, so self. makes less sense than Self::, so I switched to that for now.