From d9059ceb2482b29b91fe9cc0ad67bc5f3045a312 Mon Sep 17 00:00:00 2001 From: Qbuiba <37890918+Qbuiba@users.noreply.github.com> Date: Fri, 2 Nov 2018 14:31:44 +0700 Subject: [PATCH] Correct the typo "wether" (#24032) --- guide/english/algorithms/flood-fill/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/algorithms/flood-fill/index.md b/guide/english/algorithms/flood-fill/index.md index 589f2d5b0c..c868970d5c 100644 --- a/guide/english/algorithms/flood-fill/index.md +++ b/guide/english/algorithms/flood-fill/index.md @@ -14,7 +14,7 @@ next. The problem is pretty simple and usually follows these steps: 1. Take the position of the starting point. - 2. Decide wether you want to go in 4 directions (**N, S, W, E**) or 8 directions (**N, S, W, E, NW, NE, SW, SE**). + 2. Decide whether you want to go in 4 directions (**N, S, W, E**) or 8 directions (**N, S, W, E, NW, NE, SW, SE**). 3. Choose a replacement color and a target color. 4. Travel in those directions. 5. If the tile you land on is a target, replace it with the chosen color.