Skip to content

Commit b003083

Browse files
committed
vpr: fix typos
Signed-off-by: Paweł Czarnecki <[email protected]>
1 parent 64b61ca commit b003083

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/src/vpr/command_line_usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1257,7 +1257,7 @@ Analysis Options
12571257
.. option:: --gen_post_implementation_merged_netlist { on | off }
12581258

12591259
This option is based on ``--gen_post_synthesis_netlist``.
1260-
The difference is that ``--gen_post_implementation_merged_netlist`` generates only single verilog file with merged top module multi-bit ports of the implemented circuit.
1260+
The difference is that ``--gen_post_implementation_merged_netlist`` generates a single verilog file with merged top module multi-bit ports of the implemented circuit.
12611261
The name of the file is ``<basename>_merged_post_implementation.v``
12621262

12631263
**Default:** ``off``

vpr/src/base/netlist_writer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2305,7 +2305,7 @@ class MergedNetlistWriterVisitor : public NetlistWriterVisitor {
23052305
// Externally Accessible Functions
23062306
//
23072307

2308-
///@brief Main routing for this file. See netlist_writer.h for details.
2308+
///@brief Main routine for this file. See netlist_writer.h for details.
23092309
void netlist_writer(const std::string basename, std::shared_ptr<const AnalysisDelayCalculator> delay_calc, struct t_analysis_opts opts) {
23102310
std::string verilog_filename = basename + "_post_synthesis.v";
23112311
std::string blif_filename = basename + "_post_synthesis.blif";
@@ -2326,7 +2326,7 @@ void netlist_writer(const std::string basename, std::shared_ptr<const AnalysisDe
23262326
nl_walker.walk();
23272327
}
23282328

2329-
///@brief Main routing for this file. See netlist_writer.h for details.
2329+
///@brief Main routine for this file. See netlist_writer.h for details.
23302330
void merged_netlist_writer(const std::string basename, std::shared_ptr<const AnalysisDelayCalculator> delay_calc, struct t_analysis_opts opts) {
23312331
std::string verilog_filename = basename + "_merged_post_implementation.v";
23322332

0 commit comments

Comments
 (0)