From 3085f9d524f6d5af51580dc9ab9a07b04da3d382 Mon Sep 17 00:00:00 2001
From: Per Lindgren <per.lindgren@ltu.se>
Date: Thu, 22 Oct 2020 11:57:26 +0200
Subject: [PATCH] requirements clarifications

---
 CHANGELOG.md | 5 +++++
 README.md    | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4de8590..63a94b1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # Changelog for the repository
 
+## 2020-10-22
+
+- Clarified requirement on Your Parser
+- Fixed typo in requirement Your Parser (Doing ...)
+
 ## 2020-10-18
 
 - Update with HOME_EXAM.md
diff --git a/README.md b/README.md
index 8adad0f..ed6af69 100644
--- a/README.md
+++ b/README.md
@@ -126,10 +126,11 @@ You will each be scheduled 30 minutes to present Your home exam to us, based on
 
 ## Your parser
 
+- Your parser should accept the input language according to your grammar (EBNF).
 - You are NOT required to account for operator precedence in expressions, however you MUST support parenthesized sub expressions. (+ for precedence towards higher grades)
 - You are NOT required to account for location information (spans), but your error messages will be better if you do. (+ for spans, towards higher grades)
 - Error recovery is NOT required (+ for recovery towards higher grades)
-- You or NOT required to account for comments (neither single nor multiline). Doing
+- You or NOT required to account for comments (neither single nor multiline). (+ for supporting comments, note that regexp based comment filtering is not enough to do detect proper nesting of comments, try figure out why...)
 
 ## Your type checker
 
-- 
GitLab