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

Fix spelling issues #32

Open
wants to merge 3 commits into
base: main
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 src/starkware/air/components/bit_unpacking/bit_unpacking.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class BitUnpackingComponent {
std::vector<size_t> bits_;

/*
The columns representing the cumulative products of bits.
The columns represent the cumulative products of bits.
*/
std::vector<VirtualColumn> cumulative_bit_columns_;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void DilutedCheckCell<FieldElementT>::Finalize(gsl::span<const gsl::span<FieldEl
// Fill missing values.
// current_value refers to the maximum value in the range [0, 2^n_bits) for which we know that all
// previous values appear in the trace in diluted form.
// At the beginnin, we know of no value, so we initialize it with 0.
// At the beginning, we know of no value, so we initialize it with 0.
uint64_t current_value = 0;
uint64_t filled_missings = 0;
for (uint64_t i = 0; i < this->values_.size(); ++i) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ TEST_F(DilutedCheckCellTest, AllInitialized) {

EXPECT_ASSERT(
diluted_cell.Finalize(SpanAdapter(trace)),
HasSubstr("Trace size is not large enough for dilluted-check values. Filled "
HasSubstr("Trace size is not large enough for diluted-check values. Filled "
"missing values: 32768. Remaining missing values: 8192."));
}

Expand Down