From b4ae5d5238d33e70db3faac39d445ccffff6fcad Mon Sep 17 00:00:00 2001 From: acodedoer Date: Sun, 17 May 2020 15:17:18 +0100 Subject: [PATCH] corrected typos --- Projects/2-Intermediate/Currency-Converter.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Projects/2-Intermediate/Currency-Converter.md b/Projects/2-Intermediate/Currency-Converter.md index a6ca9406..24d34f72 100644 --- a/Projects/2-Intermediate/Currency-Converter.md +++ b/Projects/2-Intermediate/Currency-Converter.md @@ -2,12 +2,12 @@ **Tier:** 2-Intermediate -A currency converter is used to convert an amount in one currency to its corresponding value in another currency using the current exchange rates of the two currencies, for example it can be used to calculate the value of 100 US Dollars in Euros. Current exchange rates are usually provided by banks and other financial service providers, they also (in some cases) offer free and paid APIs for developers to get current and historical exchange rates between two or more currencies. +A currency converter is used to convert an amount in one currency to its corresponding value in another currency using their current exchange rate, for example it can be used to calculate the value of 100 US Dollars in Euros. Current exchange rates are usually provided by banks and other financial service providers, they also (in some cases) offer free and paid APIs for developers to get current and historical exchange rates between two or more currencies. ## User Stories - [ ] User can enter up to 9 digits to represent the amount to convert in a source input field -- [ ] User can view a soreted list of available currencies and select the currency to convert from in a source drop-down list +- [ ] User can view a sorted list of available currencies and select the currency to convert from in a source drop-down list - [ ] User can view a sorted list of available currencies and select the currency to convert to in a destination drop-down list - [ ] User views the value (rounded to two decimal places) of the source amount converted to the destination currency in a single output field as soon as either the input value, the source currency, or the destination currency is changed. - [ ] User must be alerted if the input is not a number