Doc cleanup

This commit is contained in:
Aaron Raddon 2017-07-17 21:08:35 -07:00
parent 065d8139da
commit 66be9ffaaf

View File

@ -1,16 +1,12 @@
Go Date Parser Go Date Parser
--------------------------- ---------------------------
Parse any date string without knowing format in advance. Uses 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.
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)]() [![Codecov](https://img.shields.io/codecov/c/github/araddon/dateparse.svg)]()
**Timezones** The location your server is configured effects the results! **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 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 See example https://github.com/araddon/dateparse/blob/master/example/main.go
```go ```go