From b7ac33bcf4dfafcf6a0bbe0f5f6144e7572772be Mon Sep 17 00:00:00 2001 From: Pranavkumar Patel Date: Thu, 23 Jul 2020 14:13:56 -0600 Subject: [PATCH] Update Bin2Dec-App.md Line 8: was looking incomplete. Line 10: used before plural of string --- Projects/1-Beginner/Bin2Dec-App.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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