Skip to content

Commit 8d1cdbb

Browse files
committed
Fix syntax error in clparse.rs
Fix the mismatched closing delimiter in `src/clparse.rs`. * Correct the mismatched closing delimiter at line 375. * Ensure all opening `{` have corresponding closing `}`. * Verify the syntax of the file after changes. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/openSVM/osvm-cli?shareId=XXXX-XXXX-XXXX-XXXX).
1 parent 25249ff commit 8d1cdbb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/clparse.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ pub fn parse_command_line() -> ArgMatches<'static> {
8888
.possible_values(&["mainnet", "testnet", "devnet"])
8989
.default_value("mainnet")
9090
.help("Network to deploy on"),
91-
) .subcommand(
91+
)
92+
.subcommand(
9293
SubCommand::with_name("examples")
9394
.about("Show usage examples for OSVM CLI commands")
9495
.arg(
@@ -500,5 +501,7 @@ pub fn parse_command_line() -> ArgMatches<'static> {
500501
.help("Enable transaction history (increases storage requirements)")
501502
)
502503
)
504+
)
503505
.get_matches()
504506
}
507+

0 commit comments

Comments
 (0)