From f3539ddb37a9fa2e48846c2667c0170b863d97f0 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sun, 16 Sep 2018 19:37:03 -0700 Subject: [PATCH] ircd::m::room: Fix stale comment. --- include/ircd/m/room.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ircd/m/room.h b/include/ircd/m/room.h index 2af1c9b61..b1df08cd9 100644 --- a/include/ircd/m/room.h +++ b/include/ircd/m/room.h @@ -53,7 +53,7 @@ namespace ircd::m int64_t depth(std::nothrow_t, const id::room &); int64_t depth(const id::room &); - // [GET] Count the events in the room between two (note always >=1 if a!=b) + // [GET] Count the events in the room between two indexes. size_t count_since(const room &, const m::event::idx &, const m::event::idx &); size_t count_since(const room &, const m::event::id &, const m::event::id &); size_t count_since(const m::event::idx &, const m::event::idx &);