From ac58ff83118845e68422765097f75a21ccc2129e Mon Sep 17 00:00:00 2001 From: Piyush <63099829+41y08h@users.noreply.github.com> Date: Wed, 30 Mar 2022 18:30:56 +0530 Subject: [PATCH] Fix comments --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b0002f6f..3556c46f 100644 --- a/README.md +++ b/README.md @@ -335,8 +335,8 @@ type ReadDirItem = { name: string; // The name of the item path: string; // The absolute path to the item size: string; // Size in bytes - isFile: () => boolean; // Is the file just a file? - isDirectory: () => boolean; // Is the file a directory? + isFile: () => boolean; // Is the item just a file? + isDirectory: () => boolean; // Is the item a directory? }; ```