From 158f3dcaf6fd34726c03eaeec90da41c62dd9697 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Thu, 10 Jan 2019 14:36:02 +0530 Subject: [PATCH] go/ast/inspector: fix a small typo Change-Id: Ifa677f0b0cd1cc345ce65eceacae4413a5644646 Reviewed-on: https://go-review.googlesource.com/c/157300 Reviewed-by: Brad Fitzpatrick --- go/ast/inspector/inspector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/ast/inspector/inspector.go b/go/ast/inspector/inspector.go index db88a951..ddbdd3f0 100644 --- a/go/ast/inspector/inspector.go +++ b/go/ast/inspector/inspector.go @@ -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