aboutsummaryrefslogtreecommitdiff
path: root/src/archive/tar/strconv.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/archive/tar/strconv.go')
-rw-r--r--src/archive/tar/strconv.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/archive/tar/strconv.go b/src/archive/tar/strconv.go
index 0a910f33b9..6d0a403808 100644
--- a/src/archive/tar/strconv.go
+++ b/src/archive/tar/strconv.go
@@ -28,7 +28,7 @@ func isASCII(s string) bool {
}
// toASCII converts the input to an ASCII C-style string.
-// This a best effort conversion, so invalid characters are dropped.
+// This is a best effort conversion, so invalid characters are dropped.
func toASCII(s string) string {
if isASCII(s) {
return s