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: fix some comments #737

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 contracts/src/libraries/EigenDAHasher.sol
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ library EigenDAHasher {
}

/**
* @notice given the a batchHeader in the provided metdata, calculates the hash of the batchMetadata
* @notice given the batchHeader in the provided metdata, calculates the hash of the batchMetadata
* @param batchMetadata the metadata of the batch
* @return the hash of the batchMetadata
*/
Expand Down
2 changes: 1 addition & 1 deletion encoding/rs/encoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ type RsComputeDevice interface {
ExtendPolyEval(coeffs []fr.Element) ([]fr.Element, error)
}

// The function creates a high level struct that determines the encoding the a data of a
// The function creates a high level struct that determines the encoding the data of a
// specific length under (num systematic node, num parity node) setup. A systematic node
// stores a systematic data chunk that contains part of the original data. A parity node
// stores a parity data chunk which is an encoding of the original data. A receiver that
Expand Down