Skip to content

Commit 98c393d

Browse files
committed
fix(simulation): rename legacy "cnr" options
1 parent bc2225d commit 98c393d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

simulation/src/Main.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -635,21 +635,21 @@ parserPickLinksCloseAndRandomOptions =
635635
<$> parserWorld
636636
<*> option
637637
auto
638-
( long "tg-cnr-num-nodes"
638+
( long "tg-num-nodes"
639639
<> metavar "NUMBER"
640640
<> help "The number of nodes."
641641
<> shownDefValue (numNodes def)
642642
)
643643
<*> option
644644
auto
645-
( long "tg-cnr-num-links-close"
645+
( long "tg-num-links-close"
646646
<> metavar "NUMBER"
647647
<> help "The number of links to close peers for each node."
648648
<> shownDefValue (numCloseLinksPerNode def)
649649
)
650650
<*> option
651651
auto
652-
( long "tg-cnr-num-links-random"
652+
( long "tg-num-links-random"
653653
<> metavar "NUMBER"
654654
<> help "The number of links to random peers for each node."
655655
<> shownDefValue (numRandomLinksPerNode def)

0 commit comments

Comments
 (0)