From 956abb4a4628d104f7046aec3f20925fe3f28529 Mon Sep 17 00:00:00 2001 From: Yanchen <745539141@qq.com> Date: Wed, 8 Sep 2021 10:42:50 +0800 Subject: [PATCH] Updated CodeReviewComments (markdown) --- CodeReviewComments.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CodeReviewComments.md b/CodeReviewComments.md index 82846dbc..eabd4859 100644 --- a/CodeReviewComments.md +++ b/CodeReviewComments.md @@ -201,6 +201,7 @@ local or project-specific import. Imports are organized in groups, with blank lines between them. The standard library packages are always in the first group. +The dependency packages are always in the second group cause there are changes less. ```go package main @@ -210,11 +211,11 @@ import ( "hash/adler32" "os" - "appengine/foo" - "appengine/user" - "github.com/foo/bar" "rsc.io/goversion/version" + + "appengine/foo" + "appengine/user" ) ```