From 37a841382a823e0953741df7cb7e5db26d30b8be Mon Sep 17 00:00:00 2001 From: Philipp Rados <60818062+PhilippRados@users.noreply.github.com> Date: Thu, 4 Apr 2024 22:35:04 +0200 Subject: [PATCH] Update README.md typo --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ee4a759..0e1dd64 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ The compiler emits [x86-64](https://en.wikipedia.org/wiki/X86-64) assembly in [A * [Troubleshooting](#troubleshooting) * [Contribution](#contribution) * [Project goals](#goals) -* [Ressources](#ressources) +* [Resources](#resources) ## Installation @@ -238,8 +238,8 @@ Have a look at the [documentation](https://docs.rs/wrecc_compiler/latest/wrecc_c - Compiling multiple files at once - Compiling real-world C projects like [Git](https://github.com/git/git/tree/master) -## Ressources -The following ressources helped me in building this compiler: +## Resources +The following resources helped me in building this compiler: - [Crafting Interpreters](https://craftinginterpreters.com/) - Engineering a Compiler (Book) - [acwj](https://github.com/DoctorWkt/acwj)