diff --git a/src/base/statistics.hh b/src/base/statistics.hh index f8e651b97..cdb5a0b73 100644 --- a/src/base/statistics.hh +++ b/src/base/statistics.hh @@ -1359,7 +1359,7 @@ struct DistParams : public StorageParams }; /** - * Templatized storage and interface for a distrbution stat. + * Templatized storage and interface for a distribution stat. */ class DistStor { @@ -1894,7 +1894,7 @@ class DistBase : public DataWrap } /** - * Add the argument distribution to the this distibution. + * Add the argument distribution to the this distribution. */ void add(DistBase &d) { data()->add(d.data()); } diff --git a/src/mem/comm_monitor.cc b/src/mem/comm_monitor.cc index 303b1bfa6..d5800e5dd 100644 --- a/src/mem/comm_monitor.cc +++ b/src/mem/comm_monitor.cc @@ -490,7 +490,7 @@ CommMonitor::regStats() stats.writeTransHist .init(params()->transaction_bins) .name(name() + ".writeTransHist") - .desc("Histogram of read transactions per sample period") + .desc("Histogram of write transactions per sample period") .flags(stats.disableTransactionHists ? nozero : pdf); stats.readAddrDist diff --git a/src/mem/comm_monitor.hh b/src/mem/comm_monitor.hh index 28c8ec7a1..d46f75fe0 100644 --- a/src/mem/comm_monitor.hh +++ b/src/mem/comm_monitor.hh @@ -271,7 +271,7 @@ class CommMonitor : public MemObject struct MonitorStats { - /** Disable flag for burst length historgrams **/ + /** Disable flag for burst length histograms **/ bool disableBurstLengthHists; /** Histogram of read burst lengths */