Clarified sentences in crates.md

This commit is contained in:
Tanish-Eagle 2022-08-22 23:20:45 +05:30
parent d334367182
commit 472d86991a
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# Package and Crate
A package is a project which you create with Cargo (most cases), so it contains a `Cargo.toml` file in it.
A package is a project which you create with Cargo (in most cases), so it contains a `Cargo.toml` file in it.
1. 🌟 Create a package with below layout:
```shell
@ -45,7 +45,7 @@ edition = "2021"
```rust,editable
/* FILL in the blank with your ANSWER */
// Q: Whats the difference between package 1# and 2# ?
// Q: What's the difference between package number 1 and number 2?
// A: __
```
@ -61,7 +61,7 @@ Similar to `hello-package`, `hello-package1` also has a crate in it, however, th
```rust,editable
/* FILL in the blank with your ANSWER */
// Q: Whats the name of the library crate in package `hello-package1`?
// Q: What's the name of the library crate in package `hello-package1`?
// A: __
```