From 96f1a651c73b153000d391d529ab345e34ff2f66 Mon Sep 17 00:00:00 2001 From: 0riginaln0 <74508026+0riginaln0@users.noreply.github.com> Date: Tue, 24 Feb 2026 12:08:41 +0300 Subject: [PATCH] fix a typo --- exercises/practice/bowling/bowling.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/bowling/bowling.odin b/exercises/practice/bowling/bowling.odin index 84a4ff4..e1d6c10 100644 --- a/exercises/practice/bowling/bowling.odin +++ b/exercises/practice/bowling/bowling.odin @@ -18,6 +18,6 @@ roll :: proc(g: ^Game, pins: int) -> Error { } score :: proc(g: Game) -> (int, Error) { - // Implement the `roll` procedure. + // Implement the `score` procedure. return 0, .Unimplemented }