blocking/examples
Taiki Endo c1b8fae3cc Fix clippy::or_fun_call warning in example
```
warning: use of `unwrap_or` followed by a function call
  --> examples/ls.rs:15:35
   |
15 |     let path = env::args().nth(1).unwrap_or(".".into());
   |                                   ^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| ".".into())`
   |
   = note: `#[warn(clippy::or_fun_call)]` on by default
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call
```
2022-07-17 21:37:47 +09:00
..
ls.rs Fix clippy::or_fun_call warning in example 2022-07-17 21:37:47 +09:00