Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Projects/1-Beginner/Quiz-App.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Practice and test your knowledge by answering questions in a quiz application.

As a developer you can create a quiz application for testing coding skills of other developers. (HTML, CSS, JavaScript, Python, PHP, etc...)
As a developer, you can create a quiz application for testing coding skills of other developers. (HTML, CSS, JavaScript, Python, PHP, etc...)

## User Stories

Expand All @@ -13,7 +13,7 @@ As a developer you can create a quiz application for testing coding skills of ot
- [ ] After selecting an answer, display the next question to the User. Do this until the quiz is finished
- [ ] At the end, the User can see the following statistics
- Time it took to finish the quiz
- How many correct answers did he get
- How many correct answers they got
- A message showing if he `passed` or `failed` the quiz
Comment on lines +16 to 17
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Finish gender-neutral pronoun updates and fix markdown indentation.

Line 16 was correctly updated to use "they," but line 17 still uses the masculine pronoun "he." For consistency and inclusivity, line 17 should also be updated. Additionally, the nested list items have 4-space indentation but markdown convention expects 2 spaces (per markdownlint rule MD007).

Apply this diff to fix both issues:

-    -   How many correct answers they got
-    -   A message showing if he `passed` or `failed` the quiz
+  -   How many correct answers they got
+  -   A message showing if they `passed` or `failed` the quiz
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- How many correct answers they got
- A message showing if he `passed` or `failed` the quiz
- How many correct answers they got
- A message showing if they `passed` or `failed` the quiz
🧰 Tools
🪛 markdownlint-cli2 (0.18.1)

16-16: Unordered list indentation
Expected: 2; Actual: 4

(MD007, ul-indent)


17-17: Unordered list indentation
Expected: 2; Actual: 4

(MD007, ul-indent)

🤖 Prompt for AI Agents
In Projects/1-Beginner/Quiz-App.md around lines 16 to 17, update the second
nested list item to use the gender-neutral pronoun "they" instead of "he" and
change the nested list indentation from 4 spaces to 2 spaces to match
markdownlint MD007; ensure both nested bullets align with 2-space indentation
and the text reads "A message showing if they `passed` or `failed` the quiz".


## Bonus features
Expand Down