]> ruderich.org/simon Gitweb - nsscash/nsscash.git/commitdiff
nsscash: fix typos in comments
authorSimon Ruderich <simon@ruderich.org>
Sun, 15 Dec 2019 14:50:10 +0000 (15:50 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sun, 15 Dec 2019 14:50:10 +0000 (15:50 +0100)
group.go
main_test.go

index 66da8f00551e32de8272a5b02b2fdb7c4006039f..4741171fcfcbb2fdd36d108b586cd59baac13348 100644 (file)
--- a/group.go
+++ b/group.go
@@ -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 {
index c4afa7929dbf980489cdde2fa487725d6f4917f1..4e9a83bcb8842620627c122743a48bd682377f6b 100644 (file)
@@ -156,8 +156,8 @@ func mustMakeOld(t *testing.T, paths ...string) {
        }
 }
 
-// mustMakeOld verifies that all paths have a modification time in the past,
-// as set by mustMakeOld().
+// mustBeOld verifies that all paths have a modification time in the past, as
+// set by mustMakeOld.
 func mustBeOld(t *testing.T, paths ...string) {
        for _, p := range paths {
                i, err := os.Stat(p)