Skip to content

Commit ab11a15

Browse files
authored
chore: improve format (#22)
1 parent 6affade commit ab11a15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

steps/1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ In this step, we will initialize a basic rust project, where we can start buildi
3838
If we look at what has been generated, in that folder, you will see the following:
3939

4040
- [src/main.rs](src/main.rs) - This is the entry point to your program. We will be building everything for this project in the `src` folder.
41-
- [Cargo.toml](Cargo.toml) - This is a configuration file for your Rust project. Quite similar to a `package.json` that you would see in a Node.JS project. We will modify this in the future when we import crates to use in our project, but We can leave this alone for now.
41+
- [Cargo.toml](Cargo.toml) - This is a configuration file for your Rust project. Quite similar to a `package.json` that you would see in a Node.js project. We will modify this in the future when we import crates to use in our project, but We can leave this alone for now.
4242
- [Cargo.lock](Cargo.lock) - This is an autogenerated lock file based on your `cargo.toml` and the compilation. This usually defines the very specific versions of each crate being imported, and should not be manually edited.
4343
- `target/*` - You might also see a target folder if you did `cargo run`. This is a folder where all the build artifacts are placed during compilation. We do not commit this folder into our git history.
4444

0 commit comments

Comments
 (0)