From e6f1f5f7cf26c8c5a6bccdffa4d39263c079d583 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Wed, 5 Oct 2016 09:19:27 +0900 Subject: [PATCH] fix typo --- example_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example_test.go b/example_test.go index 7789e729c..765e163ed 100644 --- a/example_test.go +++ b/example_test.go @@ -378,7 +378,7 @@ func ExampleAggregations() { // Access "timeline" aggregate in search result. agg, found := searchResult.Aggregations.Terms("timeline") if !found { - log.Fatalf("we sould have a terms aggregation called %q", "timeline") + log.Fatalf("we should have a terms aggregation called %q", "timeline") } for _, userBucket := range agg.Buckets { // Every bucket should have the user field as key.