1
0
mirror of https://github.com/golang/go synced 2024-09-30 22:38:33 -06:00

go/ast/inspector: fix a small typo

Change-Id: Ifa677f0b0cd1cc345ce65eceacae4413a5644646
Reviewed-on: https://go-review.googlesource.com/c/157300
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Agniva De Sarker 2019-01-10 14:36:02 +05:30 committed by Brad Fitzpatrick
parent aa03309574
commit 158f3dcaf6

View File

@ -14,7 +14,7 @@
// Experiments suggest the inspector's traversals are about 2.5x faster
// than ast.Inspect, but it may take around 5 traversals for this
// benefit to amortize the inspector's construction cost.
// If efficiency is the primary concern, do not use use Inspector for
// If efficiency is the primary concern, do not use Inspector for
// one-off traversals.
package inspector