Skip to content

Commit a2c5bdb

Browse files
committed
docs: readme minor fixes
1 parent a44fc87 commit a2c5bdb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,22 +177,22 @@ let specific_filter = EventFilter::new()
177177
.contract_address(*counter_contract.address())
178178
.event(Counter::CountIncreased::SIGNATURE);
179179

180-
// Track a multiple events from a SPECIFIC contract
180+
// Track multiple events from a SPECIFIC contract
181181
let specific_filter = EventFilter::new()
182182
.contract_address(*counter_contract.address())
183183
.event(Counter::CountIncreased::SIGNATURE)
184184
.event(Counter::CountDecreased::SIGNATURE);
185185

186-
// Track a SPECIFIC event from a ALL contracts
186+
// Track a SPECIFIC event from ALL contracts
187187
let specific_filter = EventFilter::new()
188188
.event(Counter::CountIncreased::SIGNATURE);
189189

190-
// Track ALL events from a SPECIFIC contracts
190+
// Track ALL events from SPECIFIC contracts
191191
let all_contract_events_filter = EventFilter::new()
192192
.contract_address(*counter_contract.address())
193193
.contract_address(*other_counter_contract.address());
194194

195-
// Track ALL events from ALL contracts in the block range
195+
// Track ALL events from ALL contracts
196196
let all_events_filter = EventFilter::new();
197197
```
198198

0 commit comments

Comments
 (0)