Updated CodeReviewComments (markdown)

Yanchen 2021-09-08 10:42:50 +08:00
parent 6cc51c3e99
commit 956abb4a46

@ -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"
)
```