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 {
2020 var description : String {
2121 switch self {
2222 case . unknown( let error) :
23- " Unknown Error: \( error. localizedDescription) "
23+ return " Unknown Error: \( error. localizedDescription) "
2424 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! "
2626 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! "
2828 case . propertyList( let error) :
29- " PropertyList Error: \( error. localizedDescription) "
29+ return " PropertyList Error: \( error. localizedDescription) "
3030 }
3131 }
3232}
You can’t perform that action at this time.
0 commit comments