proxmox/proxmox-time/src
Maximiliano Sandoval 3f62a4dacf remove unnecessary return statement
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>
2024-12-03 13:44:05 +01:00
..
calendar_event.rs time: remove deprecated functions 2024-06-20 13:48:42 +02:00
daily_duration.rs fix typos in strings 2024-07-22 08:49:42 +02:00
date_time_value.rs time: exclude certain use statements and impl block on wasm32 2024-06-19 14:55:41 +02:00
lib.rs tree-wide: enable doc_cfg and doc_auto_cfg for docs 2024-07-02 11:59:53 +02:00
parse_helpers.rs time: update to nom 7 2022-08-19 12:22:27 +02:00
posix.rs fix typos in variable and function names 2024-07-22 08:49:42 +02:00
test.rs clippy fixes 2022-10-11 09:48:04 +02:00
time_span.rs time: also implement From<&TimeSpan> for f64 2024-11-26 16:50:56 +01:00
tm_editor.rs Allow to compile on wasm32 target 2021-12-03 08:52:54 +01:00
wasm.rs fix typos in code documentation 2024-07-22 08:49:42 +02:00
week_days.rs remove unnecessary return statement 2024-12-03 13:44:05 +01:00