fix typos

Signed-off-by: Prabhat1308 <prabhatverma329@gmail.com>
This commit is contained in:
Prabhat1308
2024-03-21 17:36:46 +05:30
parent a95f5c1f97
commit 466453a075

View File

@@ -51,7 +51,7 @@ cargo run
If `cargo build`fails with `ld: library not found for -lSDL2` look at <https://github.com/PistonDevelopers/rust-empty/issues/175>
For Linux users with linker issues , build OpenSDL from the source.Download the tar.gz file with the latest version from [here](https://github.com/libsdl-org/SDL/releases/tag/release-2.30.1) and follow the procedure.
For Linux users with linker issues , download the tar.gz file with the latest version from [here](https://github.com/libsdl-org/SDL/releases/tag/release-2.30.1) and follow the procedure.
```
tar xvf SDL2-2.0.30.tar.gz
cd SDL2-2.0.30
@@ -63,7 +63,7 @@ To make sure linker is pointing to the newly downloaded library during runtime a
```
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
```
Open a new terminal session and build/run again after cleaning he previous build.
Open a new terminal session and build/run again after cleaning the previous build.
Noir circuits should have tests being written for them. For those circuits that do have tests you can run them by [installing Noir](https://noir-lang.org/docs/getting_started/installation/) and then in the root folder for example ([/circuits/cpu](/circuits/cpu)) run:
```