Skip to content

Commit c99a14d

Browse files
committedOct 1, 2020
removed nonsense suggestion
1 parent ebbd88f commit c99a14d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎example/client.swift.plush

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ struct OtoError : LocalizedError
7777
{
7878
var errorDescription: String? { return message }
7979
var failureReason: String? { return message }
80-
var recoverySuggestion: String? { return "There is likely something wrong on the server." }
80+
var recoverySuggestion: String? { return "" }
8181
var helpAnchor: String? { return "" }
8282

8383
private var message : String

‎example/swift/SwiftCLIExample/SwiftCLIExample/client.gen.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ struct OtoError : LocalizedError
9292
{
9393
var errorDescription: String? { return message }
9494
var failureReason: String? { return message }
95-
var recoverySuggestion: String? { return "There is likely something wrong on the server." }
95+
var recoverySuggestion: String? { return "" }
9696
var helpAnchor: String? { return "" }
9797

9898
private var message : String

‎otohttp/templates/client.swift.plush

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ struct OtoError : LocalizedError
7070
{
7171
var errorDescription: String? { return message }
7272
var failureReason: String? { return message }
73-
var recoverySuggestion: String? { return "There is likely something wrong on the server." }
73+
var recoverySuggestion: String? { return "" }
7474
var helpAnchor: String? { return "" }
7575

7676
private var message : String

0 commit comments

Comments
 (0)
Please sign in to comment.