diff --git a/README.md b/README.md index 6517d3c..9b613f5 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/bench_test.go b/bench_test.go index df99f2c..7d04157 100644 --- a/bench_test.go +++ b/bench_test.go @@ -2,7 +2,6 @@ package dateparse import ( "fmt" - //"github.com/bmizerany/assert" "testing" "time" )