From aa89add5dac9ffbf69e50b5f8523e433314e89b5 Mon Sep 17 00:00:00 2001 From: Aaron Raddon Date: Wed, 4 Jan 2017 22:33:14 -0800 Subject: [PATCH] update readme --- README.md | 4 ++-- bench_test.go | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) 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" )