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 tutorial/en/1-Skeleton.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.