enshort to common variable name

This commit is contained in:
yggverse 2024-12-14 07:04:23 +02:00
parent dd5fada7c7
commit 293c7d0aa3
15 changed files with 69 additions and 69 deletions

View file

@ -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`