]> Untitled Git - bdk/commitdiff
chore: fix punctuation and use `rustup override set` instead
authorLeonardo L. <oleonardolima@users.noreply.github.com>
Tue, 21 Jan 2025 19:50:30 +0000 (16:50 -0300)
committerLeonardo Lima <oleonardolima@users.noreply.github.com>
Tue, 21 Jan 2025 19:51:18 +0000 (16:51 -0300)
- 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>
README.md
ci/pin-msrv.sh

index 5ed54e97b933e59530338b185ec443aa4dee4c22..c6c212f1f52bca6d54fda81532141375cfc0a955 100644 (file)
--- a/README.md
+++ b/README.md
@@ -63,7 +63,7 @@ Fully working examples of how to use these components are in `/example-crates`:
 [`bdk_chain`]: https://docs.rs/bdk-chain/
 
 ## Minimum Supported Rust Version (MSRV)
-The BDK library maintains a MSRV of 1.63.0. This includes the following crates 
+The BDK library maintains a MSRV of 1.63.0. This includes the following crates:
 
 - `bdk_core`
 - `bdk_chain`
@@ -73,7 +73,7 @@ The BDK library maintains a MSRV of 1.63.0. This includes the following crates
 
 The MSRV of `bdk_electrum` is 1.75.0.
 
-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
+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.
 
 ## License
 
index 07454d589cc37489262117c5372c2bbd3bb93f26..214ab649d7e15a9554f1f038e8a06e35271406aa 100755 (executable)
@@ -8,7 +8,7 @@ set -euo pipefail
 # To pin deps, switch toolchain to MSRV and execute the below updates
 
 # cargo clean
-# rustup default 1.63.0
+# rustup override set 1.63.0
 
 cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5"
 cargo update -p time --precise "0.3.20"