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 @@ -62,7 +62,7 @@ Must be used in `@beginarguments begin ... end` block
62
62
```julia
63
63
@beginarguments begin
64
64
...
65
- @argumentrequired String output_file "--output " "-o "
65
+ @argumentrequired String output_file "-o " "--output "
66
66
...
67
67
end
68
68
```
@@ -89,7 +89,7 @@ Must be used in `@beginarguments begin ... end` block
89
89
```julia
90
90
@beginarguments begin
91
91
...
92
- @argumentdefault String "output.txt" output_file "--output " "-o "
92
+ @argumentdefault String "output.txt" output_file "-o " "--output "
93
93
...
94
94
end
95
95
```
@@ -116,7 +116,7 @@ Must be used in `@beginarguments begin ... end` block
116
116
```julia
117
117
@beginarguments begin
118
118
...
119
- @argumentoptional String output_file "--output " "-o "
119
+ @argumentoptional String output_file "-o " "--output "
120
120
...
121
121
end
122
122
```
@@ -143,7 +143,7 @@ Must be used in `@beginarguments begin ... end` block
143
143
```julia
144
144
@beginarguments begin
145
145
...
146
- @argumentflag verbose "--verbose " "-v "
146
+ @argumentflag verbose "-v " "--verbose "
147
147
...
148
148
end
149
149
```
You can’t perform that action at this time.
0 commit comments