Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove repetitive words #1753

Merged
merged 1 commit into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion filecoin-proofs/src/api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ where

// If the call to `extract_range` was successful, the `unsealed` vector must
// have a length which equals `num_bytes_padded`. The byte at its 0-index
// byte will be the the byte at index `offset_padded` in the sealed sector.
// byte will be the byte at index `offset_padded` in the sealed sector.
let written = write_unpadded(unsealed, &mut unsealed_output, 0, num_bytes.into())
.context("write_unpadded failed")?;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ fn fill_buffer(
// hashing thread
// - cur_producer - The next node to be filled in by producer threads. The
// hashing thread can not yet work on this node.
// - cur_awaiting - The first not not currently being filled by any producer
// - cur_awaiting - The first not currently being filled by any producer
// thread.
// - stride - Each producer fills in this many nodes at a time. Setting
// this too small with cause a lot of time to be spent in
Expand Down