From 99fe461c77eb141b9a83ecf0b7fa3e902f5db542 Mon Sep 17 00:00:00 2001 From: Erik Brakkee Date: Fri, 16 Aug 2024 00:30:28 +0200 Subject: [PATCH] typo --- pkg/models/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/models/state.go b/pkg/models/state.go index b55e406..338efd9 100644 --- a/pkg/models/state.go +++ b/pkg/models/state.go @@ -52,7 +52,7 @@ type Client struct { // // Concurrency design: // 1. State is immutable -// 2. The MatchMakers uses copy-on-write and never modifies a state directly. +// 2. The MatchMaker uses copy-on-write and never modifies a state directly. // 3. the matchmaker modifies the expiry time of the agent. This is dealt with using the // sync/atomic package by storing the expiry time as an int64 using time.Time.UnixNano()