Skip to content

Commit cdce71f

Browse files
authored
Omit "return" keyword (#211)
1 parent b1f34b1 commit cdce71f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/ArgumentParser/Parsable Types/ExpressibleByArgument.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ extension Bool: ExpressibleByArgument {}
6969

7070
extension Array where Element: ExpressibleByArgument {
7171
var defaultValueDescription: String {
72-
return map { $0.defaultValueDescription }.joined(separator: ", ")
72+
map { $0.defaultValueDescription }.joined(separator: ", ")
7373
}
7474
}

0 commit comments

Comments
 (0)