vendor/golang.org/x/sys/unix/syscall_unix.go
changeset 272 e9ffa471eeb3
parent 265 05c40b36d3b2
child 275 4a25a40d0c59
--- a/vendor/golang.org/x/sys/unix/syscall_unix.go	Sat Feb 04 13:35:58 2023 +0100
+++ b/vendor/golang.org/x/sys/unix/syscall_unix.go	Sat Feb 18 04:11:30 2023 +0000
@@ -578,7 +578,7 @@
 	return UtimesNanoAt(AT_FDCWD, path, ts, AT_SYMLINK_NOFOLLOW)
 }
 
-// emptyIovec reports whether there are no bytes in the slice of Iovec.
+// emptyIovecs reports whether there are no bytes in the slice of Iovec.
 func emptyIovecs(iov []Iovec) bool {
 	for i := range iov {
 		if iov[i].Len > 0 {