Fix typo in About page
Opened this issue · 3 comments
Context for documentation change
Currently, the text in the paragraphs on the About page are written as a series of text
elements broken so as to fit in the coder's viewing screen. This is not an optimal way to do this and causes lots of grammatical errors around spacing etc.
Proposed solution
- Create a function that accepts a list of strings and returns a single text element that combines each string in the list with a space inserted between each one.
newFunction : List String -> Element msg
- Use this function to replace the sequential blocks of text with
one
text block that just has all the text for the paragraph to used.
The final result should look something like
paragraph [ {some styling} ] <| newfunction [ ... list of strings ]
Pairing with the maintainer is encouraged for this one if it's your first time in Elm.
See here in the read me for how to run and install the application.
See here in contributing for the basics on forking and cloning the repository.
Thank you for the issue! We'll take your request into consideration and will follow up soon if we decide to tackle this issue.
To all contributors: any issue that is labeled Status: Available
is up for grabs.
To claim an issue to work on, please leave a comment. If you've claimed the issue and need help, please leave a comment letting us know and we can schedule some time to help.
For full info on how to contribute, please check out our contributors guide.
No code needed, awesome! Can I pick this?
@LeoUCon refactoring this one to need a little code, unfortunately