From 19ae9bcab7c86117c919b3ee9a3eca47ce8dbbc3 Mon Sep 17 00:00:00 2001 From: Frag Date: Wed, 5 Feb 2025 14:04:12 +0200 Subject: [PATCH] docs: Remove duplicate word in game instructions (#3252) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Motivation Снимок экрана 2025-02-05 в 08 45 25 Noticed a typo in the instructions: "player player" → "player". This fixes it for clarity. No other changes. Signed-off-by: Frag --- examples/hex-game/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hex-game/README.md b/examples/hex-game/README.md index 5fc6dc0172d..499c07b24b2 100644 --- a/examples/hex-game/README.md +++ b/examples/hex-game/README.md @@ -136,7 +136,7 @@ Now the first player can make a move by navigating to the URL you get by running mutation { makeMove(x: 4, y: 4) } ``` -And the second player player at the URL you get by running `echo "http://localhost:8080/chains/$HEX_CHAIN/applications/$APP_ID"`: +And the second player at the URL you get by running `echo "http://localhost:8080/chains/$HEX_CHAIN/applications/$APP_ID"`: ```gql,uri=http://localhost:8081/chains/$HEX_CHAIN/applications/$APP_ID mutation { makeMove(x: 4, y: 5) }