diff --git a/core/node/node_framework/src/service/runnables.rs b/core/node/node_framework/src/service/runnables.rs index 8567aacde977..0735b9e4c381 100644 --- a/core/node/node_framework/src/service/runnables.rs +++ b/core/node/node_framework/src/service/runnables.rs @@ -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. - // 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``. + // Returns a reference to created `Vec` to satisfy the `.field` method signature. macro_rules! names { ($vec:expr) => { &$vec.iter().map(|x| x.name()).collect::>() diff --git a/prover/prover_cli/src/commands/status/utils.rs b/prover/prover_cli/src/commands/status/utils.rs index 73daffbba61a..e721aaabb548 100644 --- a/prover/prover_cli/src/commands/status/utils.rs +++ b/prover/prover_cli/src/commands/status/utils.rs @@ -120,7 +120,7 @@ pub enum TaskStatus { JobsNotFound, } -// This implementation will change to From> for AggregationRoundInfo +// This implementation will change to From> for `AggregationRoundInfo` // once the --verbose flag is implemented. impl From> for TaskStatus { fn from(jobs_vector: Vec) -> Self {