Skip to content

Commit 1435daf

Browse files
authored
Update README.md
1 parent 09576d3 commit 1435daf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
</div>
1919

20-
Astar Network is an interoperable blockchain based the Substrate framework and the hub for dApps within the Polkadot Ecosystem.
20+
Astar Network is an interoperable blockchain based on the Substrate framework and the hub for dApps within the Polkadot Ecosystem.
2121
With Astar Network and Shiden Network, people can stake their tokens to a Smart Contract for rewarding projects that provide value to the network.
2222

2323
For contributing to this project, please read our [Contribution Guideline](./CONTRIBUTING.md).
@@ -30,7 +30,7 @@ Execute the following command from your terminal to set up the development envir
3030

3131
```bash
3232
# install Substrate development environment via the automatic script
33-
$ curl https://getsubstrate.io -sSf | bash -s -- --fast
33+
$ curl https://docs.substrate.io/install/ -sSf | bash -s -- --fast
3434

3535
# clone the Git repository
3636
$ git clone --recurse-submodules https://github.com/AstarNetwork/Astar.git
@@ -112,7 +112,7 @@ The runtime crate version will align its major and minor versions with the Rust
112112
All dependencies should be listed inside the workspace's root `Cargo.toml` file.
113113
This allows us to easily change version of a crate used by the entire repo by modifying the version in a single place.
114114

115-
Right now, if **non_std** is required, `default-features = false` must be set in the root `Cargo.toml` file (related to this [issue](https://github.com/rust-lang/cargo/pull/11409)). Otherwise, it will have no effect, causing your compilation to fail.
115+
Right now, if **no_std** is required, `default-features = false` must be set in the root `Cargo.toml` file (related to this [issue](https://github.com/rust-lang/cargo/pull/11409)). Otherwise, it will have no effect, causing your compilation to fail.
116116
Also `package` imports aren't properly propagated from root to sub-crates, so defining those should be avoided.
117117

118118
Defining _features_ in the root `Cargo.toml` is additive with the features defined in concrete crate's `Cargo.toml`.
@@ -122,7 +122,7 @@ Defining _features_ in the root `Cargo.toml` is additive with the features defin
122122
1. Check if the dependency is already defined in the root `Cargo.toml`
123123
1. if **yes**, nothing to do, just take note of the enabled features
124124
2. if **no**, add it (make sure to use `default-features = false` if dependency is used in _no_std_ context)
125-
2. Add `new_dependecy = { workspace = true }` to the required crate
125+
2. Add `new_dependency = { workspace = true }` to the required crate
126126
3. In case dependency is defined with `default-features = false` but you need it in _std_ context, add `features = ["std"]` to the required crate.
127127

128128
## Further Reading

0 commit comments

Comments
 (0)