From fa18845fa45442f85cc2d45f91bbdb92969d58ce Mon Sep 17 00:00:00 2001 From: Haoran Yi Date: Sat, 5 Feb 2022 21:44:59 -0600 Subject: [PATCH] fix typos --- core/src/banking_stage.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/banking_stage.rs b/core/src/banking_stage.rs index c1d2175208..1238a2153d 100644 --- a/core/src/banking_stage.rs +++ b/core/src/banking_stage.rs @@ -1,5 +1,5 @@ //! The `banking_stage` processes Transaction messages. It is intended to be used -//! to contruct a software pipeline. The stage uses all available CPU cores and +//! to construct a software pipeline. The stage uses all available CPU cores and //! can do its processing in parallel with signature verification on the GPU. use { crate::{ @@ -194,7 +194,7 @@ impl BankingStageStats { } fn report(&mut self, report_interval_ms: u64) { - // skip repoting metrics if stats is empty + // skip reporting metrics if stats is empty if self.is_empty() { return; }