From c1e3fe6b140c6ac7f9d7c792480a10208a4ac7ec Mon Sep 17 00:00:00 2001 From: YOSHIDA Masanori Date: Mon, 10 Dec 2018 21:24:55 +0900 Subject: [PATCH] ethereum: fix typo in interfaces.go (#18266) * Fix typo in interfaces.go * Update interfaces.go --- interfaces.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces.go b/interfaces.go index 26b0fcbc17..be78344062 100644 --- a/interfaces.go +++ b/interfaces.go @@ -146,7 +146,7 @@ type FilterQuery struct { // {{A}} matches topic A in first position // {{}, {B}} matches any topic in first position, B in second position // {{A}, {B}} matches topic A in first position, B in second position - // {{A, B}}, {C, D}} matches topic (A OR B) in first position, (C OR D) in second position + // {{A, B}, {C, D}} matches topic (A OR B) in first position, (C OR D) in second position Topics [][]common.Hash }