1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00

Fixed typo in DL station hint text.

This commit is contained in:
Taloth Saldono 2017-02-21 18:19:55 +01:00
parent 2855090005
commit 1f8bd8e1e9
2 changed files with 2 additions and 2 deletions

View File

@ -288,7 +288,7 @@ protected ValidationFailure TestOutputPath()
{ {
return new NzbDroneValidationFailure(fieldName, $"Folder does not exist") return new NzbDroneValidationFailure(fieldName, $"Folder does not exist")
{ {
DetailedDescription = $"The folder '{downloadDir}' does not exist, it must be created manually inside the inside the Shared Folder '{sharedFolder}'." DetailedDescription = $"The folder '{downloadDir}' does not exist, it must be created manually inside the Shared Folder '{sharedFolder}'."
}; };
} }
} }

View File

@ -206,7 +206,7 @@ protected ValidationFailure TestOutputPath()
{ {
return new NzbDroneValidationFailure(fieldName, $"Folder does not exist") return new NzbDroneValidationFailure(fieldName, $"Folder does not exist")
{ {
DetailedDescription = $"The folder '{downloadDir}' does not exist, it must be created manually inside the inside the Shared Folder '{sharedFolder}'." DetailedDescription = $"The folder '{downloadDir}' does not exist, it must be created manually inside the Shared Folder '{sharedFolder}'."
}; };
} }
} }