update readme

This commit is contained in:
Aaron Raddon 2017-01-04 22:33:14 -08:00
parent 28f6d2c206
commit aa89add5da
2 changed files with 2 additions and 3 deletions

View File

@ -3,10 +3,10 @@ Go Date Parser
Parse Any date format without knowing format in advance. Uses
a Scan/Lex based approach to minimize shotgun based parse attempts.
See bench_test.go for performance comparison.
See [bench_test.go](https://github.com/araddon/dateparse/blob/master/bench_test.go) for performance comparison.
See https://github.com/araddon/dateparse/blob/master/example/main.go
See example https://github.com/araddon/dateparse/blob/master/example/main.go
```go
package main

View File

@ -2,7 +2,6 @@ package dateparse
import (
"fmt"
//"github.com/bmizerany/assert"
"testing"
"time"
)