diff options
| author | Eric Biggers <ebiggers@google.com> | 2023-09-09 11:30:45 -0700 |
|---|---|---|
| committer | Eric Biggers <ebiggers@google.com> | 2023-09-09 11:30:45 -0700 |
| commit | e663a3ee2287be77dcd44631b29147a1eddcb4f0 (patch) | |
| tree | 07f2f6d6cd79d6f892c11d7ab808ae0372d4444d /crypto/rand.go | |
| parent | c999f0b04c526a85d061a7461c0e4211e94f9fb7 (diff) | |
Re-run 'make format' with latest version of gofmt
Diffstat (limited to 'crypto/rand.go')
| -rw-r--r-- | crypto/rand.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/rand.go b/crypto/rand.go index 7d1e55b..527f841 100644 --- a/crypto/rand.go +++ b/crypto/rand.go @@ -30,7 +30,8 @@ import ( // the operating system has insufficient randomness, the buffer creation will // fail. This is an improvement over Go's built-in crypto/rand which will still // return bytes if the system has insufficiency entropy. -// See: https://github.com/golang/go/issues/19274 +// +// See: https://github.com/golang/go/issues/19274 // // While this syscall was only introduced in Kernel v3.17, it predates the // introduction of filesystem encryption, so it introduces no additional |