From 6e7f036891a240716ae4cc08ae80e495a1195955 Mon Sep 17 00:00:00 2001 From: ggilmore Date: Wed, 16 Aug 2023 10:20:16 -0700 Subject: [PATCH] repoURl -> repoURL --- api_proto.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api_proto.go b/api_proto.go index e04907d46..52dec1952 100644 --- a/api_proto.go +++ b/api_proto.go @@ -345,7 +345,7 @@ func (p *Progress) ToProto() *proto.Progress { } } -func SearchResultFromProto(p *proto.SearchResponse, repoURls, lineFragments map[string]string) *SearchResult { +func SearchResultFromProto(p *proto.SearchResponse, repoURLs, lineFragments map[string]string) *SearchResult { if p == nil { return nil } @@ -361,7 +361,7 @@ func SearchResultFromProto(p *proto.SearchResponse, repoURls, lineFragments map[ Files: files, - RepoURLs: repoURls, + RepoURLs: repoURLs, LineFragments: lineFragments, } }