non-abbreviated function names

This commit is contained in:
🪞👃🪞 2025-03-24 00:14:13 +02:00
parent f4f38939d5
commit a38d103d7d
3 changed files with 7 additions and 7 deletions

View file

@ -43,7 +43,7 @@ pub(crate) fn entries_under (
if let Some(path) = path {
let mut others = vec![];
for other in entries.iter_mut() {
if other.path.starts_with(&path) && !other.is_dir() {
if other.path.starts_with(&path) && !other.is_directory() {
others.push(other.info.clone());
}
}