3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-28 19:35:53 +00:00

Small comment update

This commit is contained in:
Akash Levy 2024-08-14 05:37:28 -07:00
parent 2deabdd640
commit 63a421aed8

View file

@ -148,7 +148,7 @@ struct SplitfanoutPass : public Pass {
{
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
log("\n");
log(" splitfanout [options] [selection]\n");
log(" splitfanout [selection]\n");
log("\n");
log("This command copies selected cells with >1 fanout into cells with fanout 1. It\n");
log("is effectively the opposite of the opt_merge pass.\n");
@ -164,7 +164,7 @@ struct SplitfanoutPass : public Pass {
size_t argidx;
for (argidx = 1; argidx < args.size(); argidx++)
{
// No arguments currently supported
// No options currently. When adding in the future make sure to update docstring with [options]
break;
}
extra_args(args, argidx, design);