Skip to content

Commit e63fabe

Browse files
committed
Minor improvements in README
1 parent cb94708 commit e63fabe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A really small command line parser
66
Usage
77
======
88

9-
```
9+
```haxe
1010
var yourArgHandler = hxargs.Args.generate([
1111
@doc("Documentation for your command")
1212
["-cmd", "--alternative-command"] => function(arg:String) {
@@ -23,10 +23,10 @@ if (args.length == 0) Sys.println(yourArgHandler.getDoc());
2323
else yourArgHandler.parse(args);
2424
```
2525

26-
Example: https://github.com/Simn/dox/blob/master/src/dox/Dox.hx#L26
26+
[Example](https://github.com/Simn/dox/blob/master/src/dox/Dox.hx#L25-L51)
2727

2828
Features
2929
=======
3030

3131
- parses commands
32-
- comes in a class
32+
- comes in a class

0 commit comments

Comments
 (0)