Skip to content

Commit 857fe55

Browse files
committed
Fixes formatting.
1 parent f283f8f commit 857fe55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Sources/ArgumentParserToolInfo/ToolInfo.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ public struct CommandInfoV0: Codable, Hashable {
9393
self.superCommands = try container.decodeIfPresent(
9494
[String].self, forKey: .superCommands)
9595
self.commandName = try container.decode(String.self, forKey: .commandName)
96-
self.aliases = try container.decodeIfPresent([String].self, forKey: .aliases)
96+
self.aliases = try container.decodeIfPresent(
97+
[String].self, forKey: .aliases)
9798
self.abstract = try container.decodeIfPresent(
9899
String.self, forKey: .abstract)
99100
self.discussion = try container.decodeIfPresent(

0 commit comments

Comments
 (0)