From b3d22313ba0ccf6ffc946ef2443c98ca23749d75 Mon Sep 17 00:00:00 2001 From: Chelsea Holland Komlo Date: Mon, 14 Aug 2017 18:51:32 +0000 Subject: [PATCH] update comment for revised contexts --- api/search.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/api/search.go b/api/search.go index 376c12844..08774f98d 100644 --- a/api/search.go +++ b/api/search.go @@ -13,8 +13,7 @@ func (c *Client) Search() *Search { return &Search{client: c} } -// PrefixSearch returns a list of matches for a particular context and prefix. If a -// context is not specified, matches for all contexts are returned. +// PrefixSearch returns a list of matches for a particular context and prefix. func (s *Search) PrefixSearch(prefix string, context contexts.Context) (*SearchResponse, error) { var resp SearchResponse req := &SearchRequest{Prefix: prefix, Context: context}