Fix error message

This commit is contained in:
Pedro Piñera 2018-06-27 08:56:11 +02:00
parent 61d330f95e
commit 286225c58e
1 changed files with 2 additions and 2 deletions

View File

@ -7,9 +7,9 @@ enum XpmEnvError: FatalError {
var errorDescription: String {
switch self {
case .noVersionAvailable:
return "Couldn't find any local xpm version available. Try running again."
return "Couldn't find any local xpm version available."
case let .pathNotFound(version):
return "Couldn't get the local path for version \(version.description)"
return "Couldn't get the local path for version \(version.description)."
}
}
}