Skip to content

Fix typos in comments and error messages #4868

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

Open
wants to merge 1 commit 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/wiredancer/rtl/ed25519_sigverify_0.sv
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

Dispatch and merge of sigverify-split-0 jobs to processors.

Dispatch serializes the three inputs of each invokation
Dispatch serializes the three inputs of each invocation
into the same processor. Job distribution logic is a
simple round-robin policy. Pointer moves when a job
is completely taken by a processor.
Expand Down
2 changes: 1 addition & 1 deletion src/wiredancer/rtl/schl_cpu.sv
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ module shcl_cpu
mem_d_wr_en <= '0;
end
else begin
if (curr_state[0] == ST_INIT) begin // Write in constants (intialization only happens at startup)
if (curr_state[0] == ST_INIT) begin // Write in constants (initialization only happens at startup)
init_done <= (init_addr == NUM_CONSTS && next_instr_ready == '1); // Consts written into memory and initial instr read for all tags

if( init_addr < NUM_CONSTS) begin
Expand Down
2 changes: 1 addition & 1 deletion src/wiredancer/test/test_wiredancer_demo.c
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ main( int argc,

ulong page_sz = fd_cstr_to_shmem_page_sz( _page_sz );
if( FD_UNLIKELY( !page_sz ) ) FD_LOG_ERR(( "unsupported --page-sz" ));
if( FD_UNLIKELY( !replay_pcap ) ) FD_LOG_ERR(( "--replay-pcap not specifed" ));
if( FD_UNLIKELY( !replay_pcap ) ) FD_LOG_ERR(( "--replay-pcap not specified" ));

/* Check minimum number of tiles */
ulong req_tile_cnt = 1 /* main */ + (( !!replay_enabled )? 1UL : 0UL) +
Expand Down