Pārlūkot izejas kodu

unix: fix godoc comment for clen

The second part of the godoc sentence appears twice.

Change-Id: I119c7119ff50401eed3d7369a7709d8c779a7f9e
Reviewed-on: https://go-review.googlesource.com/90095
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Tobias Klauser 7 gadi atpakaļ
vecāks
revīzija
ff2a66f350
1 mainītis faili ar 1 papildinājumiem un 2 dzēšanām
  1. 1 2
      unix/syscall_unix.go

+ 1 - 2
unix/syscall_unix.go

@@ -50,8 +50,7 @@ func errnoErr(e syscall.Errno) error {
 	return e
 }
 
-// clen returns the index of the first NULL byte in n or len(n) if n contains no
-// NULL byte or len(n) if n contains no NULL byte
+// clen returns the index of the first NULL byte in n or len(n) if n contains no NULL byte.
 func clen(n []byte) int {
 	for i := 0; i < len(n); i++ {
 		if n[i] == 0 {