We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24c5ae0 commit 587b5ccCopy full SHA for 587b5cc
third_party/pkgsite/print_type.go
@@ -109,7 +109,7 @@ type declVisitor struct {
109
func (v *declVisitor) Visit(n ast.Node) ast.Visitor {
110
switch n := n.(type) {
111
case *ast.BasicLit:
112
- if n.Kind == token.STRING && len(n.Value) > 128 {
+ if n.Kind == token.STRING && len(n.Value) > 512 {
113
v.Comments = append(v.Comments,
114
&ast.CommentGroup{List: []*ast.Comment{{
115
Slash: n.Pos(),
0 commit comments