Skip to content

Commit

Permalink
Fix spelling errors across multiple files (#698)
Browse files Browse the repository at this point in the history
* fix spelling BlobStorageManager.ts

* fix spelling package.json

* fix spelling CHANGELOG.md

* fix spelling CHANGELOG.md
  • Loading branch information
Marcofann authored Jan 28, 2025
1 parent 0065722 commit 90a05b3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@
"vitest-mock-extended": "^1.2.0"
},
"manypkg": {
"workspaceProtocool": "require"
"workspaceProtocol": "require"
}
}
2 changes: 1 addition & 1 deletion packages/blob-propagator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@

- [#380](https://github.com/Blobscan/blobscan/pull/380) [`7e2d4d0`](https://github.com/Blobscan/blobscan/commit/7e2d4d0f601127c00ade2f01e4936579463230fd) Thanks [@PJColombo](https://github.com/PJColombo)! - Filtered out duplicated blobs when propagating multiple blobs

- [#388](https://github.com/Blobscan/blobscan/pull/388) [`40824c2`](https://github.com/Blobscan/blobscan/commit/40824c26f6d8a360592c812bd1afe505d9fc4f6d) Thanks [@PabloCastellano](https://github.com/PabloCastellano)! - Decoupled blob storage creation from enviroment variables
- [#388](https://github.com/Blobscan/blobscan/pull/388) [`40824c2`](https://github.com/Blobscan/blobscan/commit/40824c26f6d8a360592c812bd1afe505d9fc4f6d) Thanks [@PabloCastellano](https://github.com/PabloCastellano)! - Decoupled blob storage creation from environment variables

- [`0570eee`](https://github.com/Blobscan/blobscan/commit/0570eee9a4d30f5c07cef177ba79cd1798992761) Thanks [@PJColombo](https://github.com/PJColombo)! - Allowed to configure blob propagation jobs lifetime

Expand Down
2 changes: 1 addition & 1 deletion packages/blob-storage-manager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@

- [#379](https://github.com/Blobscan/blobscan/pull/379) [`db42b53`](https://github.com/Blobscan/blobscan/commit/db42b539582d2b9a19339bd3b9b610d5d90b71b9) Thanks [@PabloCastellano](https://github.com/PabloCastellano)! - Bumped bee client version to use non-deferred uploads

- [#388](https://github.com/Blobscan/blobscan/pull/388) [`40824c2`](https://github.com/Blobscan/blobscan/commit/40824c26f6d8a360592c812bd1afe505d9fc4f6d) Thanks [@PabloCastellano](https://github.com/PabloCastellano)! - Decoupled blob storage creation from enviroment variables
- [#388](https://github.com/Blobscan/blobscan/pull/388) [`40824c2`](https://github.com/Blobscan/blobscan/commit/40824c26f6d8a360592c812bd1afe505d9fc4f6d) Thanks [@PabloCastellano](https://github.com/PabloCastellano)! - Decoupled blob storage creation from environment variables

- Updated dependencies [[`0a61aec`](https://github.com/Blobscan/blobscan/commit/0a61aec545fa1b3b7a44b2a7c9e9a8e8250c1362), [`b1141b1`](https://github.com/Blobscan/blobscan/commit/b1141b1ca369ee8c3d02c4cb3dd4e47ebca08120), [`72e4b96`](https://github.com/Blobscan/blobscan/commit/72e4b963e2e735156032467554e6cc3cd311097e), [`7bb6f49`](https://github.com/Blobscan/blobscan/commit/7bb6f4912c89d0dd436e325677c801200e32edba), [`514784a`](https://github.com/Blobscan/blobscan/commit/514784a743937dc2d1af1ed533e90fef3b3aa057), [`5ffb8ca`](https://github.com/Blobscan/blobscan/commit/5ffb8ca355bfcd02393a3b40e89b9d7a1a5a05e8), [`89df217`](https://github.com/Blobscan/blobscan/commit/89df217e817727a710a7c3217ad7be4750de93ce), [`b4e8d2c`](https://github.com/Blobscan/blobscan/commit/b4e8d2cd63d4f2b307f21848c23da14acc265ab0)]:
- @blobscan/logger@0.1.0
Expand Down
4 changes: 2 additions & 2 deletions packages/blob-storage-manager/src/BlobStorageManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,11 +268,11 @@ export class BlobStorageManager {
uniqueInputStorageNames.length &&
selectedAvailableStorages.length !== uniqueInputStorageNames.length
) {
const selectdAvailableStorageNames = selectedAvailableStorages.map(
const selectedAvailableStorageNames = selectedAvailableStorages.map(
(s) => s.name
);
const missingStorageNames = uniqueInputStorageNames.filter(
(storageName) => !selectdAvailableStorageNames.includes(storageName)
(storageName) => !selectedAvailableStorageNames.includes(storageName)
);

throw new BlobStorageManagerError(
Expand Down

0 comments on commit 90a05b3

Please sign in to comment.