fxied condition

This commit is contained in:
Yannick Uhlmann 2020-12-31 12:16:54 +01:00
parent fdd2e33219
commit e2b9b28c93
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ fn main() {
let url = if args.len() < 2 { "https://github.com/Boscop/web-view"}
else { &args[1] };
let title = if < 3 { "Rust Web Viewer" }
let title = if args.len() < 3 { "Rust Web Viewer" }
else { &args[2] };
web_view::builder()