From 6677ab24bbef94d9d53575064453b184568f7d57 Mon Sep 17 00:00:00 2001 From: Benjamin Wenger <ben@elixxir.ioo> Date: Wed, 20 Oct 2021 13:24:55 -0700 Subject: [PATCH] fixed a typo --- bindings/ud.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/ud.go b/bindings/ud.go index a70d85e8d..900e102d7 100644 --- a/bindings/ud.go +++ b/bindings/ud.go @@ -215,12 +215,12 @@ type lookupResponse struct{ id *id.ID } -// MuliLookup Looks for the contact object associated with all given userIDs. +// MultiLookup Looks for the contact object associated with all given userIDs. // The ids are the byte representation of an id stored in an IDList object. // This will reject if that id is malformed or if the indexing on the IDList // object is wrong. The MultiLookupCallback will return with all contacts // returned within the timeout. -func (ud UserDiscovery) MuliLookup(ids *IdList, callback MultiLookupCallback, +func (ud UserDiscovery) MultiLookup(ids *IdList, callback MultiLookupCallback, timeoutMS int) error { idList := make([]*id.ID,0,ids.Len()) -- GitLab