Fixed up comments.

This commit is contained in:
Taloth Saldono 2017-12-19 18:38:29 +01:00
parent 459d6ea906
commit 96108cb758
1 changed files with 4 additions and 2 deletions

View File

@ -114,7 +114,8 @@ namespace NzbDrone.Mono.Disk
}
if (isSameDir)
{ // We're in the same dir, so we can preserve relative symlinks.
{
// We're in the same dir, so we can preserve relative symlinks.
newFile.CreateSymbolicLinkTo(symlinkInfo.ContentsPath);
}
else
@ -142,7 +143,8 @@ namespace NzbDrone.Mono.Disk
var newFile = new UnixSymbolicLinkInfo(destination);
if (isSameDir)
{ // We're in the same dir, so we can preserve relative symlinks.
{
// We're in the same dir, so we can preserve relative symlinks.
newFile.CreateSymbolicLinkTo(symlinkInfo.ContentsPath);
}
else