i18n(nl) tweaking some Dutch translations #53
Annotations
3 warnings
build
clippy-action doesn't have permissions to create Check Runs, disabling!
|
build
Resource not accessible by integration - https://docs.github.com/rest/checks/runs#create-a-check-run
|
this `match` expression can be replaced with `?`:
src/main.rs#L304
warning: this `match` expression can be replaced with `?`
--> src/app.rs:304:27
|
304 | let dialog_page = match self.dialog_pages.front() {
| ___________________________^
305 | | Some(some) => some,
306 | | None => return None,
307 | | };
| |_________^ help: try instead: `self.dialog_pages.front()?`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#question_mark
= note: `#[warn(clippy::question_mark)]` on by default
|