From 9c864c448fc1cc85cf2959ccffe9c768001a7a39 Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Wed, 10 Jul 2024 12:01:35 -0700 Subject: [PATCH] Change resister colors in description to lowercase to match spelling in the problem data (#2462) --- exercises/resistor-color-duo/description.md | 20 ++++++++++---------- exercises/resistor-color-trio/description.md | 20 ++++++++++---------- exercises/resistor-color/description.md | 20 ++++++++++---------- 3 files changed, 30 insertions(+), 30 deletions(-) diff --git a/exercises/resistor-color-duo/description.md b/exercises/resistor-color-duo/description.md index bc9cf975d9..6bee124945 100644 --- a/exercises/resistor-color-duo/description.md +++ b/exercises/resistor-color-duo/description.md @@ -17,16 +17,16 @@ The program will take color names as input and output a two digit number, even i The band colors are encoded as follows: -- Black: 0 -- Brown: 1 -- Red: 2 -- Orange: 3 -- Yellow: 4 -- Green: 5 -- Blue: 6 -- Violet: 7 -- Grey: 8 -- White: 9 +- black: 0 +- brown: 1 +- red: 2 +- orange: 3 +- yellow: 4 +- green: 5 +- blue: 6 +- violet: 7 +- grey: 8 +- white: 9 From the example above: brown-green should return 15, and diff --git a/exercises/resistor-color-trio/description.md b/exercises/resistor-color-trio/description.md index e1cc25755d..beb41e9854 100644 --- a/exercises/resistor-color-trio/description.md +++ b/exercises/resistor-color-trio/description.md @@ -12,16 +12,16 @@ For this exercise, you need to know only three things about them: The program will take 3 colors as input, and outputs the correct value, in ohms. The color bands are encoded as follows: -- Black: 0 -- Brown: 1 -- Red: 2 -- Orange: 3 -- Yellow: 4 -- Green: 5 -- Blue: 6 -- Violet: 7 -- Grey: 8 -- White: 9 +- black: 0 +- brown: 1 +- red: 2 +- orange: 3 +- yellow: 4 +- green: 5 +- blue: 6 +- violet: 7 +- grey: 8 +- white: 9 In Resistor Color Duo you decoded the first two colors. For instance: orange-orange got the main value `33`. diff --git a/exercises/resistor-color/description.md b/exercises/resistor-color/description.md index 3a4e21e1cd..31c95e4a14 100644 --- a/exercises/resistor-color/description.md +++ b/exercises/resistor-color/description.md @@ -15,16 +15,16 @@ In this exercise you are going to create a helpful program so that you don't hav These colors are encoded as follows: -- Black: 0 -- Brown: 1 -- Red: 2 -- Orange: 3 -- Yellow: 4 -- Green: 5 -- Blue: 6 -- Violet: 7 -- Grey: 8 -- White: 9 +- black: 0 +- brown: 1 +- red: 2 +- orange: 3 +- yellow: 4 +- green: 5 +- blue: 6 +- violet: 7 +- grey: 8 +- white: 9 The goal of this exercise is to create a way: