Skip to content

Commit

Permalink
Fix sentence fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
DJMcNab committed Feb 28, 2024
1 parent 633efe9 commit 481ef40
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/with_winit/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,9 @@ fn android_main(app: AndroidApp) {
.build()
.expect("Required to continue");
let args = if let Some(args) = option_env!("VELLO_STATIC_ARGS") {
// We split by whitespace here to allow
// We split by whitespace here to allow passing multiple arguments
// In theory, we could do more advanced parsing/splitting (e.g. using quotes),
// but that would require a lot more effort
Args::parse_from(args.split_ascii_whitespace())
} else {
Args::parse()
Expand Down

0 comments on commit 481ef40

Please sign in to comment.