From 246dd2526cc01800fa22f7c0fde3f3e3e67942da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smail=20Ar=C4=B1l=C4=B1k?= Date: Sat, 22 Jul 2023 13:08:06 +0300 Subject: [PATCH] fix(walkthrough.md) add a comma operator to eliminate ambiguity There was an ambiguity on whether the `it` after `don't` is a subject or object. --- src/walkthrough.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/walkthrough.md b/src/walkthrough.md index 84cb1296..5e22f10e 100644 --- a/src/walkthrough.md +++ b/src/walkthrough.md @@ -163,7 +163,7 @@ Depending on the feature/change/bug fix/improvement, implementation may be relatively-straightforward or it may be a major undertaking. You can always ask for help or mentorship from more experienced compiler devs. Also, you don't have to be the one to implement your feature; but keep in mind that if you -don't it might be a while before someone else does. +don't, it might be a while before someone else does. For the `?` macro feature, I needed to go understand the relevant parts of macro expansion in the compiler. Personally, I find that [improving the