Skip to content

Commit

Permalink
misc: small fix or general refactoring i did not bother commenting
Browse files Browse the repository at this point in the history
  • Loading branch information
evilsocket committed Nov 1, 2024
1 parent 1bebaf3 commit e537bb7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/cli/view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ pub(crate) async fn view(args: ViewArgs) -> anyhow::Result<()> {
);
println!(" parameters:");
for (parameter_name, parameter) in &function.parameters {
println!(
" {{${}}} : {}",
parameter_name, parameter.description
);
println!(" {} : {}", parameter_name, parameter.description);
}

println!();
Expand Down

0 comments on commit e537bb7

Please sign in to comment.