From 96108cb758108ebe484cc7790febc976543183ad Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Tue, 19 Dec 2017 18:38:29 +0100 Subject: [PATCH] Fixed up comments. --- src/NzbDrone.Mono/Disk/DiskProvider.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Mono/Disk/DiskProvider.cs b/src/NzbDrone.Mono/Disk/DiskProvider.cs index 34fb9757e..19649f2b4 100644 --- a/src/NzbDrone.Mono/Disk/DiskProvider.cs +++ b/src/NzbDrone.Mono/Disk/DiskProvider.cs @@ -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