Skip to content

Commit c8b55da

Browse files
chore: fix punctuation and use rustup override set instead
- fix some nits and punctuation typos. - recommend usage of `rustup override set` instead of `rustup default` command. Co-authored-by: Steve Myers <github@notmandatory.org>
1 parent 78bbfbe commit c8b55da

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Fully working examples of how to use these components are in `/example-crates`:
6363
[`bdk_chain`]: https://docs.rs/bdk-chain/
6464

6565
## Minimum Supported Rust Version (MSRV)
66-
The BDK library maintains a MSRV of 1.63.0. This includes the following crates
66+
The BDK library maintains a MSRV of 1.63.0. This includes the following crates:
6767

6868
- `bdk_core`
6969
- `bdk_chain`
@@ -73,7 +73,7 @@ The BDK library maintains a MSRV of 1.63.0. This includes the following crates
7373

7474
The MSRV of `bdk_electrum` is 1.75.0.
7575

76-
To build with the MSRV of 1.63.0 you will need to pin dependencies by running the [`pin-msrv.sh`](./ci/pin-msrv.sh) script
76+
To build with the MSRV of 1.63.0 you will need to pin dependencies by running the [`pin-msrv.sh`](./ci/pin-msrv.sh) script.
7777

7878
## License
7979

ci/pin-msrv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -euo pipefail
88
# To pin deps, switch toolchain to MSRV and execute the below updates
99

1010
# cargo clean
11-
# rustup default 1.63.0
11+
# rustup override set 1.63.0
1212

1313
cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5"
1414
cargo update -p time --precise "0.3.20"

0 commit comments

Comments
 (0)