mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 09:35:28 +00:00
enshort to common variable name
This commit is contained in:
parent
dd5fada7c7
commit
293c7d0aa3
15 changed files with 69 additions and 69 deletions
|
|
@ -28,12 +28,12 @@ impl Bookmark {
|
|||
match database.records(None) {
|
||||
Ok(records) => {
|
||||
for record in records {
|
||||
if let Err(reason) = memory.add(record.request, record.id) {
|
||||
todo!("{}", reason.to_string())
|
||||
if let Err(e) = memory.add(record.request, record.id) {
|
||||
todo!("{}", e.to_string())
|
||||
}
|
||||
}
|
||||
}
|
||||
Err(reason) => todo!("{}", reason.to_string()),
|
||||
Err(e) => todo!("{}", e.to_string()),
|
||||
}
|
||||
|
||||
// Return new `Self`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue