From c9e1d961472fa9f28834550102da65d8ac1afbc2 Mon Sep 17 00:00:00 2001 From: "Artan.sh" <65761581+tanTarantino@users.noreply.github.com> Date: Wed, 26 Oct 2022 09:40:06 +0200 Subject: [PATCH] Fix typos (#3615) Co-authored-by: Andrii Siriak --- .../java/com/thealgorithms/backtracking/FloodFill.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/thealgorithms/backtracking/FloodFill.java b/src/main/java/com/thealgorithms/backtracking/FloodFill.java index 0a7439333..6c4446a40 100644 --- a/src/main/java/com/thealgorithms/backtracking/FloodFill.java +++ b/src/main/java/com/thealgorithms/backtracking/FloodFill.java @@ -7,7 +7,7 @@ package com.thealgorithms.backtracking; public class FloodFill { /** - * Get the color at the given co-odrinates of a 2D image + * Get the color at the given coordinates of a 2D image * * @param image The image to be filled * @param x The x co-ordinate of which color is to be obtained @@ -19,9 +19,9 @@ public class FloodFill { } /** - * Put the color at the given co-odrinates of a 2D image + * Put the color at the given coordinates of a 2D image * - * @param image The image to be filed + * @param image The image to be filled * @param x The x co-ordinate at which color is to be filled * @param y The y co-ordinate at which color is to be filled */ @@ -32,7 +32,7 @@ public class FloodFill { /** * Fill the 2D image with new color * - * @param image The image to be filed + * @param image The image to be filled * @param x The x co-ordinate at which color is to be filled * @param y The y co-ordinate at which color is to be filled * @param newColor The new color which to be filled in the image