From ec36485648cd0275cde7cb0abeb7530c8c38eda7 Mon Sep 17 00:00:00 2001 From: Augusto Date: Tue, 26 Jan 2021 18:39:16 +0000 Subject: [PATCH] Fix a typo in the roman_numbers exercise --- subjects/roman_numbers/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/roman_numbers/README.md b/subjects/roman_numbers/README.md index c4c8ea5c..2b6ff317 100644 --- a/subjects/roman_numbers/README.md +++ b/subjects/roman_numbers/README.md @@ -1,7 +1,7 @@ ## roman_numbers ### Instructions -Implement the From Trait to create a roman number from a u32 the roman number should be in subtractive notation (the common way to write roman number I, II, II, IV, V, VI, VII, VIII, IX, X ...) +Implement the From Trait to create a roman number from a u32 the roman number should be in subtractive notation (the common way to write roman number I, II, III, IV, V, VI, VII, VIII, IX, X ...) For this start by defining the digits as `RomanDigit` with the values I, V, X, L, C, D, M and Nulla for 0