Skip to content

Commit efecc78

Browse files
authored
Merge pull request #24 from scottrhoyt/develop
Small formatting change.
2 parents e59385a + 13035ed commit efecc78

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

Sources/NoonianKit/Android/Commands/Init.swift

+15-15
Original file line numberDiff line numberDiff line change
@@ -81,24 +81,24 @@ public struct InitOptions: OptionsProtocol {
8181
public static func evaluate(_ m: CommandMode) -> Result<InitOptions, CommandantError<NoonianKitError>> {
8282
return curry(InitOptions.init)
8383
<*> m <| Option(
84-
key: "path",
85-
defaultValue: nil,
86-
usage: "The directory to create the project in. Defaults to <Project Name> in the current directory."
84+
key: "path",
85+
defaultValue: nil,
86+
usage: "The directory to create the project in. Defaults to <Project Name> in the current directory."
8787
)
88-
<*> m <| Option<String?>(
89-
key: "activity",
90-
defaultValue: nil,
91-
usage: "The name of the activity. Defaults to Main."
88+
<*> m <| Option(
89+
key: "activity",
90+
defaultValue: nil,
91+
usage: "The name of the activity. Defaults to Main."
9292
)
93-
<*> m <| Option<String?>(
94-
key: "target",
95-
defaultValue: nil,
96-
usage: "The target to build for. Specify by target name and not ID. Defaults to android-25 (7.1)."
93+
<*> m <| Option(
94+
key: "target",
95+
defaultValue: nil,
96+
usage: "The target to build for. Specify by target name and not ID. Defaults to android-25 (7.1)."
9797
)
98-
<*> m <| Option<String?>(
99-
key: "package",
100-
defaultValue: nil,
101-
usage: "The package name. Defaults to com.example.<project>."
98+
<*> m <| Option(
99+
key: "package",
100+
defaultValue: nil,
101+
usage: "The package name. Defaults to com.example.<project>."
102102
)
103103
<*> m <| Argument(usage: "the project name")
104104
}

0 commit comments

Comments
 (0)