File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ enum GenerateError: Error, CustomStringConvertible {
20
20
var description : String {
21
21
switch self {
22
22
case . unknown( let error) :
23
- " Unknown Error: \( error. localizedDescription) "
23
+ return " Unknown Error: \( error. localizedDescription) "
24
24
case . notInstallSFSymbols:
25
- " SF Symbols.app is not installed yet! Please go to Apple Developer Website to download! "
25
+ return " SF Symbols.app is not installed yet! Please go to Apple Developer Website to download! "
26
26
case . notInstallSFSymbolsBeta:
27
- " SF Symbols beta.app is not installed yet! Please go to Apple Developer Website to download! "
27
+ return " SF Symbols beta.app is not installed yet! Please go to Apple Developer Website to download! "
28
28
case . propertyList( let error) :
29
- " PropertyList Error: \( error. localizedDescription) "
29
+ return " PropertyList Error: \( error. localizedDescription) "
30
30
}
31
31
}
32
32
}
You can’t perform that action at this time.
0 commit comments