From 9afe097881dc06f11075d57b761aceb5fdf18728 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Sun, 20 Aug 2023 12:44:40 +0200 Subject: [PATCH] fix typos (#620) * fix typos * fix typo --- README.md | 4 ++-- documentation/src/introduction.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dd9f20b351..976814724e 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ Is EVM written in rust that is focused on **speed** and **simplicity**. It has fast and flexible implementation with simple interface and embedded Host. It is passing all `ethereum/tests` test suits -Here is list of things that i would like to use as guide in this project: -- **EVM compatibility and stability** - this goes without saying but it is nice to put it here. In blockchain industry, stability is most desired attribute of any system. +Here is a list of things that I would like to use as guide in this project: +- **EVM compatibility and stability** - this goes without saying but it is nice to put it here. In the blockchain industry, stability is the most desired attribute of any system. - **Speed** - is one of the most important things and most decisions are made to complement this. - **Simplicity** - simplification of internals so that it can be easily understood and extended, and interface that can be easily used or integrated into other projects. - **interfacing** - `[no_std]` so that it can be used as wasm lib and integrate with JavaScript and cpp binding if needed. diff --git a/documentation/src/introduction.md b/documentation/src/introduction.md index 559586f3c8..3f3f714482 100644 --- a/documentation/src/introduction.md +++ b/documentation/src/introduction.md @@ -4,7 +4,7 @@ ## Crates -The project hase 4 main crates that are used to build the revm. The crates are: +The project has 4 main crates that are used to build the revm. The crates are: - `revm`: The main EVM library. - `revm-primitives`: Primitive data types.