diff --git a/Projects/1-Beginner/Bin2Dec-App.md b/Projects/1-Beginner/Bin2Dec-App.md index 9bb4503f..036cfc2f 100644 --- a/Projects/1-Beginner/Bin2Dec-App.md +++ b/Projects/1-Beginner/Bin2Dec-App.md @@ -5,9 +5,9 @@ Binary is the number system all digital computers are based on. Therefore it's important for developers to understand binary, or base 2, mathematics. The purpose of Bin2Dec is to provide practice and -understanding of how binary calculations. +understanding of how binary calculations are done. -Bin2Dec allows the user to enter strings of up to 8 binary digits, 0's +Bin2Dec allows the user to enter string of up to 8 binary digits, 0's and 1's, in any sequence and then displays its decimal equivalent. This challenge requires that the developer implementing it follow these