From 5d18a66cd80a3dfb87f65e7b5d835b8d6df1f935 Mon Sep 17 00:00:00 2001 From: AMIT KUSHWAHA Date: Mon, 3 Oct 2022 19:14:29 +0530 Subject: [PATCH] Update roman-numerals.java (#901) corrected the spelling mistake because of which my pull request failed the spell check --- algorithms/Java/Maths/roman-numerals.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithms/Java/Maths/roman-numerals.java b/algorithms/Java/Maths/roman-numerals.java index 55dda0fc..3f907f41 100644 --- a/algorithms/Java/Maths/roman-numerals.java +++ b/algorithms/Java/Maths/roman-numerals.java @@ -10,7 +10,7 @@ import java.util.HashMap; * ---------------------------------------------------------------------------------------------------------------- * * Constraints: - * The input sting should contain only the characters ('I', 'V', 'X', 'L', 'C', 'D', 'M'). + * The input string should contain only the characters ('I', 'V', 'X', 'L', 'C', 'D', 'M'). * It is guaranteed that the input is a valid roman numeral in the range [1, 3999]. * * ----------------------------------------------------------------------------------------------------------------