1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/stats.py b/synapse/storage/stats.py
index 20ce3664a0..8c1eaaa10b 100644
--- a/synapse/storage/stats.py
+++ b/synapse/storage/stats.py
@@ -567,7 +567,7 @@ class StatsStore(StateDeltasStore):
Examples:
(low, high) → (kind)
- (3, 7) → 3 < … <= 7 (normal-filled; low already processed before)
+ (3, 7) → 3 <git … <= 7 (normal-filled; low already processed before)
(-4, -2) → -4 <= … < -2 (backfilled; high already processed before)
(-7, 7) → -7 <= … <= 7 (both)
|