mirror of
https://git.proxmox.com/git/proxmox
synced 2025-11-06 12:19:52 +00:00
Fixes the clippy lint: ``` warning: unneeded `return` statement --> proxmox-time/src/week_days.rs:31:14 | 31 | _ => return Err(parse_error(text, "weekday")), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return = note: `#[warn(clippy::needless_return)]` on by default help: remove `return` | 31 | _ => Err(parse_error(text, "weekday")), | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``` Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com> |
||
|---|---|---|
| .. | ||
| calendar_event.rs | ||
| daily_duration.rs | ||
| date_time_value.rs | ||
| lib.rs | ||
| parse_helpers.rs | ||
| posix.rs | ||
| test.rs | ||
| time_span.rs | ||
| tm_editor.rs | ||
| wasm.rs | ||
| week_days.rs | ||