Skip to content

Commit f59eab0

Browse files
committed
2 parents 0fff1bd + df6d46e commit f59eab0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ let main argv =
2929
let words = Input.Option(["--word"; "-w"], (fun () -> Array.empty<string>), "A list of words to be appended")
3030
let separator = Input.Option(["--separator"; "-s"], (fun () -> ","), "A character that will separate the joined words.")
3131
32-
rootCommand {
32+
rootCommand argv {
3333
description "Appends words together"
3434
inputs (words, separator)
3535
setHandler app
@@ -79,7 +79,7 @@ let main argv =
7979
// Initialize app dependencies
8080
let svc = WordService()
8181
82-
rootCommand {
82+
rootCommand argv {
8383
description "Appends words together"
8484
inputs (words, separator)
8585
usePipeline (fun builder ->
@@ -132,7 +132,7 @@ let deleteCmd =
132132
133133
[<EntryPoint>]
134134
let main argv =
135-
rootCommand {
135+
rootCommand argv {
136136
description "File System Manager"
137137
setHandler id
138138
setCommand listCmd

0 commit comments

Comments
 (0)