From b6d7392e10ba75407c1c03aed9015b74c7e64eb2 Mon Sep 17 00:00:00 2001 From: Arin <72822356+koreaneggroll@users.noreply.github.com> Date: Tue, 16 Mar 2021 14:26:11 +0200 Subject: [PATCH] typos I suppose --- tutorial/en/1-Skeleton.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorial/en/1-Skeleton.md b/tutorial/en/1-Skeleton.md index bf59e3a..dcd0f24 100644 --- a/tutorial/en/1-Skeleton.md +++ b/tutorial/en/1-Skeleton.md @@ -142,11 +142,11 @@ git clone -b step-0 https://github.com/lotabout/write-a-C-interpreter ``` Note that I might fix bugs later, and if there is any incosistance between the -artical and the code branches, follow the article. I would only update code in +article and the code branches, follow the article. I would only update code in the master branch. ## Summary After some boring typing, we have the simplest compiler: a do-nothing -compiler. In next chapter, we will implement the `eval` function, i.e. our own +compiler. In the next chapter, we will implement the `eval` function, i.e. our own virtual machine. See you then.