]> ruderich.org/simon Gitweb - nsscash/nsscash.git/blobdiff - group.go
README.adoc: fix syntax for nested list
[nsscash/nsscash.git] / group.go
index b96f6b14aa4c779cc59c1ebc4498c96a5fefcdb2..4741171fcfcbb2fdd36d108b586cd59baac13348 100644 (file)
--- a/group.go
+++ b/group.go
@@ -23,10 +23,10 @@ import (
        "encoding/binary"
        "fmt"
        "io"
+       "math"
        "sort"
        "strconv"
        "strings"
-       "math"
 
        "github.com/pkg/errors"
 )
@@ -194,7 +194,7 @@ func SerializeGroups(w io.Writer, grs []Group) error {
        tmp := make([]byte, 8)
 
        // Create index "sorted" in input order, used when iterating over all
-       // passwd entries (getgrent_r); keeping the original order makes
+       // group entries (getgrent_r); keeping the original order makes
        // debugging easier
        var indexOrig bytes.Buffer
        for _, g := range grs {