remove more indenting

pull/1881/head
Cory LaNou 2015-03-07 08:11:22 -07:00
parent b31ecd89ea
commit abb96535dd
1 changed files with 4 additions and 5 deletions

View File

@ -4,7 +4,7 @@ InfluxDB Go Client Library
# package client
```go
import "github.com/influxdb/influxdb/client"
import "github.com/influxdb/influxdb/client"
```
@ -13,14 +13,13 @@ InfluxDB Go Client Library
```go
func EpochToTime(epoch int64, precision string) (time.Time, error)
```
EpochToTime takes a unix epoch time and uses precision to return back a
time.Time
EpochToTime takes a unix epoch time and uses precision to return back a
time.Time
```go
func SetPrecision(t time.Time, precision string) time.Time
```
SetPrecision will round a time to the specified precision
SetPrecision will round a time to the specified precision
#TYPES