From b04da9d48227b5d020a9668d06a5b92cb6746540 Mon Sep 17 00:00:00 2001 From: HackyMiner Date: Tue, 29 Jan 2019 01:50:31 +0900 Subject: [PATCH] ethereum: improve FilterQuery comment (#18955) --- interfaces.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interfaces.go b/interfaces.go index be78344062..1ff31f96b6 100644 --- a/interfaces.go +++ b/interfaces.go @@ -144,9 +144,9 @@ type FilterQuery struct { // Examples: // {} or nil matches any topic list // {{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 + // {{}, {B}} matches any topic in first position AND B in second position + // {{A}, {B}} matches topic A in first position AND B in second position + // {{A, B}, {C, D}} matches topic (A OR B) in first position AND (C OR D) in second position Topics [][]common.Hash }