From f0d847572df2a07d31d3f5ab56ed92975cc2ffdf Mon Sep 17 00:00:00 2001 From: Frank Schroeder Date: Fri, 5 May 2017 12:36:47 +0200 Subject: [PATCH] Fix imports on website --- website/source/docs/internals/coordinates.html.markdown | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/source/docs/internals/coordinates.html.markdown b/website/source/docs/internals/coordinates.html.markdown index b79155ca13..042beef603 100644 --- a/website/source/docs/internals/coordinates.html.markdown +++ b/website/source/docs/internals/coordinates.html.markdown @@ -71,9 +71,10 @@ coordinates: ``` import ( - "github.com/hashicorp/serf/coordinate" "math" "time" + + "github.com/hashicorp/serf/coordinate" ) func dist(a *coordinate.Coordinate, b *coordinate.Coordinate) time.Duration {