瀏覽代碼

ethereum: fix a typo in FilterQuery{} (#16827)

Fix a spelling mistake in comment
Mohanson 7 年之前
父節點
當前提交
a9c6ef6905
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      interfaces.go

+ 1 - 1
interfaces.go

@@ -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
 }