diff --git a/MirrorProvider/MirrorProvider.Windows/WindowsFileSystemVirtualizer.cs b/MirrorProvider/MirrorProvider.Windows/WindowsFileSystemVirtualizer.cs index 5100884cf..aebdcd7ba 100644 --- a/MirrorProvider/MirrorProvider.Windows/WindowsFileSystemVirtualizer.cs +++ b/MirrorProvider/MirrorProvider.Windows/WindowsFileSystemVirtualizer.cs @@ -317,7 +317,7 @@ private void OnFileModifiedOrDeleted(string relativePath, bool isDirectory, bool // NotificationType.FileHandleClosedFileModified and so this method will only be called for modifications. // Once MacFileSystemVirtualizer supports delete notifications we'll register for // NotificationType.FileHandleClosedFileDeleted and this method will be called for both modifications and deletions. - Console.WriteLine($"OnFileModifiedOrDeleted: `{relativePath}`, isDirectory: {isDirectory}, isModfied: {isFileDeleted}, isDeleted: {isFileDeleted}"); + Console.WriteLine($"OnFileModifiedOrDeleted: `{relativePath}`, isDirectory: {isDirectory}, isModfied: {isFileModified}, isDeleted: {isFileDeleted}"); } private void OnFileRenamed( @@ -345,4 +345,4 @@ private static HResult HResultFromWin32(int win32error) return win32error <= 0 ? (HResult)win32error : (HResult)unchecked((win32error & 0x0000FFFF) | (FacilityWin32 << 16) | 0x80000000); } } -} \ No newline at end of file +}