From: Austin Clements Date: Fri, 5 Apr 2019 14:05:57 +0000 (-0400) Subject: runtime: fix typo in debuglog comment X-Git-Tag: go1.13beta1~792 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=cea44714fb4e79b939e5b781ee61e97b3d7e1c14;p=gostls13.git 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 --- 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