From 1a1ad11f57435cceed0541a0badf7878a6201256 Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Fri, 19 Jun 2020 11:00:26 +0530 Subject: [PATCH] doc: update coding doc to correct import order Updated coding doc to correct the import order as per the standard. More info can be found on https://github.com/golang/go/wiki/CodeReviewComments#imports Signed-off-by: Madhu Rajanna --- docs/coding.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/coding.md b/docs/coding.md index b3e9fb021..9f663c82e 100644 --- a/docs/coding.md +++ b/docs/coding.md @@ -23,9 +23,9 @@ We use the following convention for specifying imports: ``` - - + + ``` Example: @@ -37,10 +37,10 @@ import ( "strings" "time" + "github.com/ceph/ceph-csi/internal/util" + "github.com/pborman/uuid" "github.com/pkg/errors" - - "github.com/ceph/ceph-csi/internal/util" ) ```