From ea1af07d68762b0a6ea4093e0c8204212a70c357 Mon Sep 17 00:00:00 2001 From: Michele Sessa Date: Tue, 26 Sep 2023 12:15:54 +0100 Subject: [PATCH] style(markdown_to_html): rephrase a sentence --- subjects/markdown_to_html/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/markdown_to_html/README.md b/subjects/markdown_to_html/README.md index 4c542cbe..23613147 100644 --- a/subjects/markdown_to_html/README.md +++ b/subjects/markdown_to_html/README.md @@ -4,7 +4,7 @@ Create a function which converts markdown into HTML. -To easier the task you'll only have to account for the first three titles (`#`, `##`, `###`) and for `bold` and `italic` (`**` and `*`). +To make the task easier you'll only have to account for the first three titles (`#`, `##`, `###`) and for `bold` and `italic` (`**` and `*`). Parsing and converting markdown can be very tricky and some edge cases can require a lot of time to solve, for this reason we will limit the tests to correct and simple inputs.