Skip to content

Commit

Permalink
Format.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamiPerttu committed Oct 21, 2023
1 parent 1583baa commit 8994a6d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ fn parse_uint(text: &mut String) {
}

fn main() {
let mut arg: String = std::env::args().nth(1).unwrap_or("You must provide a type.".to_string());
let mut arg: String = std::env::args()
.nth(1)
.unwrap_or("You must provide a type.".to_string());

remove_string(&mut arg, "fundsp::");
remove_string(&mut arg, "audionode::");
Expand Down

0 comments on commit 8994a6d

Please sign in to comment.