Browse code

Fix typo, "fil" -> "fill"

Signed-off-by: Icaro Seara <icaro.seara@gmail.com>

Icaro Seara authored on 2015/08/20 09:44:02
Showing 1 changed files
... ...
@@ -51,7 +51,7 @@ func setHeaderForSpecialDevice(hdr *tar.Header, ta *tarAppender, name string, st
51 51
 	nlink = uint32(s.Nlink)
52 52
 	inode = uint64(s.Ino)
53 53
 
54
-	// Currently go does not fil in the major/minors
54
+	// Currently go does not fill in the major/minors
55 55
 	if s.Mode&syscall.S_IFBLK != 0 ||
56 56
 		s.Mode&syscall.S_IFCHR != 0 {
57 57
 		hdr.Devmajor = int64(major(uint64(s.Rdev)))