From e5dac43844171893f3bc49d1f18e884220f549f7 Mon Sep 17 00:00:00 2001 From: Rupert Swarbrick Date: Mon, 20 Nov 2023 15:53:48 +0000 Subject: [PATCH] Fix spelling of separator --- dv/uvm/core_ibex/scripts/report_lib/util.py | 2 +- dv/verilator/pcount/cpp/ibex_pcounts.cc | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dv/uvm/core_ibex/scripts/report_lib/util.py b/dv/uvm/core_ibex/scripts/report_lib/util.py index c94698d49f..f6a00756c2 100644 --- a/dv/uvm/core_ibex/scripts/report_lib/util.py +++ b/dv/uvm/core_ibex/scripts/report_lib/util.py @@ -96,7 +96,7 @@ def parse_xcelium_cov_report(cov_report: str) -> Dict[str, Dict[str, Dict[str, i metric_info.append((metric_info_match.group(1), metric_info_match.group(2))) - # Skip header seperator line + # Skip header separator line metrics_start_line = line_no + 2 if metrics_start_line == -1: diff --git a/dv/verilator/pcount/cpp/ibex_pcounts.cc b/dv/verilator/pcount/cpp/ibex_pcounts.cc index 733dcf09bf..20cfec9736 100644 --- a/dv/verilator/pcount/cpp/ibex_pcounts.cc +++ b/dv/verilator/pcount/cpp/ibex_pcounts.cc @@ -33,7 +33,7 @@ const std::vector ibex_counter_names = { "Divide Wait"}; std::string ibex_pcount_string(bool csv) { - char seperator = csv ? ',' : ':'; + char separator = csv ? ',' : ':'; std::string::size_type longest_name_length; if (!csv) { @@ -42,14 +42,14 @@ std::string ibex_pcount_string(bool csv) { longest_name_length = std::max(longest_name_length, counter_name.length()); } - // Add 1 to always get at least once space after the seperator + // Add 1 to always get at least once space after the separator longest_name_length++; } std::stringstream pcount_ss; for (int i = 0; i < ibex_counter_names.size(); ++i) { - pcount_ss << ibex_counter_names[i] << seperator; + pcount_ss << ibex_counter_names[i] << separator; if (!csv) { int padding = longest_name_length - ibex_counter_names[i].length();