reorder fields to follow struct definition

This commit is contained in:
Cole Helbling 2020-03-12 15:53:11 -07:00
parent e7cb285183
commit 2be7962206
No known key found for this signature in database
GPG Key ID: B37E0F2371016A4C
1 changed files with 1 additions and 1 deletions

View File

@ -113,8 +113,8 @@ impl DB {
// pass `PathBuf::from(path_str)` // pass `PathBuf::from(path_str)`
self.dirs.push(Dir { self.dirs.push(Dir {
path: path.display().to_string(), path: path.display().to_string(),
last_accessed: epoch,
rank, rank,
last_accessed: epoch,
}); });
} }
[] | [""] => {} // ignore blank lines [] | [""] => {} // ignore blank lines