Skip to content

Commit

Permalink
ci: Fix spellcheck issues
Browse files Browse the repository at this point in the history
  • Loading branch information
popzxc committed May 8, 2024
1 parent a704bce commit a2874d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions core/node/node_framework/src/service/runnables.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ pub(super) struct Runnables {

impl fmt::Debug for Runnables {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
// Macro that iterates over a `Vec`, invokes `.name()` method and collects the results into a Vec<String>.
// Returns a reference to created vec to satisfy the `.field` method signature.
// Macro that iterates over a `Vec`, invokes `.name()` method and collects the results into a `Vec<String>``.
// Returns a reference to created `Vec` to satisfy the `.field` method signature.
macro_rules! names {
($vec:expr) => {
&$vec.iter().map(|x| x.name()).collect::<Vec<_>>()
Expand Down
2 changes: 1 addition & 1 deletion prover/prover_cli/src/commands/status/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ pub enum TaskStatus {
JobsNotFound,
}

// This implementation will change to From<Vec<ProverJobFriInfo>> for AggregationRoundInfo
// This implementation will change to From<Vec<ProverJobFriInfo>> for `AggregationRoundInfo`
// once the --verbose flag is implemented.
impl From<Vec<ProverJobFriInfo>> for TaskStatus {
fn from(jobs_vector: Vec<ProverJobFriInfo>) -> Self {
Expand Down

0 comments on commit a2874d2

Please sign in to comment.