From 66be9ffaaf1e821fd5f52cd49e722d445e61b791 Mon Sep 17 00:00:00 2001 From: Aaron Raddon Date: Mon, 17 Jul 2017 21:08:35 -0700 Subject: [PATCH] Doc cleanup --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 56fa325..e6169b0 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,12 @@ Go Date Parser --------------------------- -Parse any date string without knowing format in advance. Uses -a scanner to read bytes and use a state machine to find format. -Much faster than shotgun based parse methods. -See [bench_test.go](https://github.com/araddon/dateparse/blob/master/bench_test.go) for performance comparison. +Parse any date string without knowing format in advance. Uses a scanner to read bytes and use a state machine to find format. Much faster than shotgun based parse methods. See [bench_test.go](https://github.com/araddon/dateparse/blob/master/bench_test.go) for performance comparison. [![Codecov](https://img.shields.io/codecov/c/github/araddon/dateparse.svg)]() -**Timezones** The location your server is configured effects the results! -See example or https://play.golang.org/p/IDHRalIyXh and last paragraph here https://golang.org/pkg/time/#Parse. +**Timezones** The location your server is configured effects the results! See example or https://play.golang.org/p/IDHRalIyXh and last paragraph here https://golang.org/pkg/time/#Parse. See example https://github.com/araddon/dateparse/blob/master/example/main.go ```go