interfaces: fix a typo in FilterQuery{}

The example of "matches topic A in first position, B in second position" should be {{A}, {B}}
This commit is contained in:
Mohanson 2018-05-29 15:14:56 +08:00 committed by GitHub
parent ccc0debb63
commit 428755c5a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -144,7 +144,7 @@ type FilterQuery struct {
// {} 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}} 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
Topics [][]common.Hash
}