Browse Source

fix(debug): tracing typo

Co-authored-by: Christina Sørensen <christina@cafkafk.com>
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
Christina Sørensen 2 years ago
parent
commit
e7a50d33fd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/fs/dir.rs

+ 1 - 1
src/fs/dir.rs

@@ -42,7 +42,7 @@ impl Dir {
                           .map(|result| result.map(|entry| entry.path()))
                           .map(|result| result.map(|entry| entry.path()))
                           .collect::<Result<_, _>>()?;
                           .collect::<Result<_, _>>()?;
 
 
-        info!("Read directory succes {:?}", &path);
+        info!("Read directory success {:?}", &path);
         Ok(Self { contents, path })
         Ok(Self { contents, path })
     }
     }