From b25cfa5c9caf08fd19dd3f16447fe3027e9312d8 Mon Sep 17 00:00:00 2001 From: BethanyG Date: Mon, 29 Jun 2026 12:17:19 -0700 Subject: [PATCH] Update instructions.append.md Fixed comment order on Error Message comment. --- .../practice/state-of-tic-tac-toe/.docs/instructions.append.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/state-of-tic-tac-toe/.docs/instructions.append.md b/exercises/practice/state-of-tic-tac-toe/.docs/instructions.append.md index 4772e47677..28d4adffd9 100644 --- a/exercises/practice/state-of-tic-tac-toe/.docs/instructions.append.md +++ b/exercises/practice/state-of-tic-tac-toe/.docs/instructions.append.md @@ -16,7 +16,7 @@ Your code is also expected to throw a `ValueError` if one player is assessed as To raise a `ValueError` with a message, write the message as an argument to the `exception` type: ```python -# Example when player X goes before player O. +# Example when player O goes before player X. raise ValueError("Wrong turn order: O started") # Example when player X goes twice.