From 065ef22ca487fd16275ee647bed29dd1c8c0e329 Mon Sep 17 00:00:00 2001 From: Friendly-Robot Date: Tue, 20 Oct 2020 21:25:02 -0700 Subject: [PATCH] Tier 1 app - Spellcheckr --- Projects/1-Beginner/Spellcheckr.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Projects/1-Beginner/Spellcheckr.md diff --git a/Projects/1-Beginner/Spellcheckr.md b/Projects/1-Beginner/Spellcheckr.md new file mode 100644 index 00000000..28139e88 --- /dev/null +++ b/Projects/1-Beginner/Spellcheckr.md @@ -0,0 +1,23 @@ +# Spellcheckr + +**Tier:** 1-Beginner + +Spellcheckr is a simple program that looks for words that don't repeat. Sometimes a word that's not repeated in a big file +is a word that's misspelled. This program lints these words specifically so we can catch these mistakes early. + +## User Stories + +- [ ] User can type into a textarea. +- [ ] User can click a button to generate a list of words on the right hand side. +- [ ] User can see all the words that only appear once. +- [ ] User will not see common programming statements like for, while, if, etc. + +## Bonus features + +- [ ] User can see the button opaque to 90% during the click. +- [ ] User can click the outputted words to find which line they're on. + +## Useful links and resources + +- [Textarea documentation](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea) +- [Example of common programming statements](https://en.wikipedia.org/wiki/Statement_(computer_science))