Skip to content

Commit 18e39f0

Browse files
committed
fix: fix typos
1 parent 0d0c1c4 commit 18e39f0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ __fixed__
333333

334334
# 2.1.0
335335
From this release users should use the HDNode directly (compared to accessing `.keyPair`) when performing ECDSA operations such as `sign` or `verify`.
336-
Ideally you shoud not have to directly access `HDNode` internals for general usage, as it can often be confusing and error prone.
336+
Ideally you should not have to directly access `HDNode` internals for general usage, as it can often be confusing and error prone.
337337

338338
__added__
339339
- `ECPair.prototype.getNetwork`
@@ -344,7 +344,7 @@ __added__
344344

345345

346346
# 2.0.0
347-
In this release we have strived to simplify the API, [using native types](https://github.com/bitcoinjs/bitcoinjs-lib/issues/407) wherevever possible to encourage cross-compatibility with other open source community modules.
347+
In this release we have strived to simplify the API, [using native types](https://github.com/bitcoinjs/bitcoinjs-lib/issues/407) wherever possible to encourage cross-compatibility with other open source community modules.
348348

349349
The `ecdsa` module has been removed in lieu of using a new ECDSA module (for performance and safety reasons) during the `2.x.y` major release.
350350
Several other cumbersome modules have been removed, with their new independent modules recommended for usage instead for greater modularity in your projects.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ If you'd like to use a different (more modern) build tool than `browserify`, you
9393

9494
```sh
9595
$ npm install bitcoinjs-lib browserify
96-
$ npx browserify --standalone bitcoin - -o bitcoinjs-lib.js <<<"module.exports = require('bitcoinjs-lib');"
96+
$ npx browserify --standalone bitcoin -o bitcoinjs-lib.js <<< "module.exports = require('bitcoinjs-lib');"
9797
```
9898

9999
Which you can then import as an ESM module:

0 commit comments

Comments
 (0)