From cea44714fb4e79b939e5b781ee61e97b3d7e1c14 Mon Sep 17 00:00:00 2001 From: Austin Clements Date: Fri, 5 Apr 2019 10:05:57 -0400 Subject: [PATCH] runtime: fix typo in debuglog comment Change-Id: I8a40461b93eab034ed930e0c5e32391f84cdbc5a Reviewed-on: https://go-review.googlesource.com/c/go/+/170799 Reviewed-by: Ian Lance Taylor Reviewed-by: Sebastien Binet --- src/runtime/debuglog.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/debuglog.go b/src/runtime/debuglog.go index 3f8481270a..100f2d370a 100644 --- a/src/runtime/debuglog.go +++ b/src/runtime/debuglog.go @@ -25,7 +25,7 @@ import ( // heap size. const debugLogBytes = 16 << 10 -// debugLogStringLimit the the maximum number of bytes in a string. +// debugLogStringLimit is the maximum number of bytes in a string. // Above this, the string will be truncated with "..(n more bytes).." const debugLogStringLimit = debugLogBytes / 8 -- 2.48.1