Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Carlos Sanchez <[email protected]>
  • Loading branch information
jozkee and carlossanlop committed May 26, 2021
1 parent d3f64eb commit 493049a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ private void AddDirectoryWatchUnlocked(WatchedDirectory? parent, string director
directoryEntry.Parent = parent;
if (hasParent)
{
parent!.InitializedChildren.Add (directoryEntry);
parent!.InitializedChildren.Add(directoryEntry);
}
}
directoryEntry.Name = directoryName;
Expand All @@ -421,7 +421,7 @@ private void AddDirectoryWatchUnlocked(WatchedDirectory? parent, string director
};
if (hasParent)
{
parent!.InitializedChildren.Add (directoryEntry);
parent!.InitializedChildren.Add(directoryEntry);
}
_wdToPathMap.Add(wd, directoryEntry);
isNewDirectory = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void FileSystemWatcher_SymbolicLink_TargetsDirectory_Create_IncludeSubdir
}

[Fact]
public void FileSystemWatcher_SymbolicLink_IncludeSubdirectories_DoNotDereferencesChildLink()
public void FileSystemWatcher_SymbolicLink_IncludeSubdirectories_DoNotDereferenceChildLink()
{
// Arrange
using var dirA = new TempDirectory(GetTestFilePath());
Expand Down

0 comments on commit 493049a

Please sign in to comment.