From 3b51c699485437727627be107d8a2a8a37e8e06e Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Tue, 20 Feb 2024 15:55:15 +0100 Subject: [PATCH] Typo2 --- backend/cmd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/cmd/main.go b/backend/cmd/main.go index 5892d5a..699ebf5 100644 --- a/backend/cmd/main.go +++ b/backend/cmd/main.go @@ -17,7 +17,7 @@ type ButtonState struct { // This is what a handler with a receiver looks like // Keep in mind that concurrent state access is not (usually) safe -// And will in pracice be guarded by a mutex +// And will in practice be guarded by a mutex func (b *ButtonState) pressHandler(w http.ResponseWriter, r *http.Request) { if r.Method == "POST" { b.PressCount++