Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/website/contents/for-developers/ReleaseProcess.md
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ The consensus packages are now split as follows:
`ouroboros-consensus-protocol`. In particular it contains 3 subdirectories
with the `byron`, `shelley` and `cardano` (`HardForkBlock`) instantitations.

It also contains the code for the `cardano-tools` like `db-analyzer` and
It also contains the code for the `cardano-tools` like `db-analyser` and
`db-synthesizer`.

``` mermaid
Expand Down
6 changes: 3 additions & 3 deletions ouroboros-consensus-cardano/scripts/plot-ledger-ops-cost.gp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
#
# Usage
#
# gnuplot -e "bench_data='my-db-analyzer.data'" plot-ledger-ops-cost.gp
# gnuplot -e "bench_data='my-db-analyser.data'" plot-ledger-ops-cost.gp
#
# where 'my-db-analyzer.data' is the path to the file that contains the output
# where 'my-db-analyser.data' is the path to the file that contains the output
# of the 'benchmark-ledger-ops' command. By default the plot is saved in a file
# named "bench-ledger-ops.png". This can be changed by passing the 'out_file'
# variable. For instance:
Expand All @@ -13,7 +13,7 @@
#

if (!exist("bench_data")) {
print "No input file path given. Expecting: gnuplot -e \"bench_data='my-db-analyzer.data'\" plot-ledger-ops-cost.gp"
print "No input file path given. Expecting: gnuplot -e \"bench_data='my-db-analyser.data'\" plot-ledger-ops-cost.gp"
exit 1
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

-- | This module provides functionality for helping writing data values as CSV entries.
--
-- A couple of 'db-analyzer` analysis produce CSV files, which contain
-- A couple of 'db-analyser` analysis produce CSV files, which contain
-- the analysis' results. A way to populate these files is to write
-- the headers first, and then, line by line, write the rows that
-- contain the data. Each column in a row containing data must
Expand Down