From a072ddc92232bb773a873ca65645d355b2266fa5 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Mon, 3 Feb 2020 17:59:32 +0100 Subject: [PATCH] Fix typo in Apply docs --- api/correlation/map.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/correlation/map.go b/api/correlation/map.go index fab08623f29..dd3a09e11f1 100644 --- a/api/correlation/map.go +++ b/api/correlation/map.go @@ -64,7 +64,7 @@ func NewMap(update MapUpdate) Map { return NewEmptyMap().Apply(update) } -// Apply creates a copy of the map with the contents of the updated +// Apply creates a copy of the map with the contents of the update // applied. Apply will first drop the keys from DropSingleK and // DropMultiK, then add key-value pairs from SingleKV and MultiKV. func (m Map) Apply(update MapUpdate) Map {