Skip to content

Commit

Permalink
[Docs] FIxed event-process doc typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aicorein authored Mar 5, 2025
1 parent 1ebbc34 commit caa9e9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/intro/event-preprocess.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ class StartEndMatch(Matcher):
async def match(text: str) -> bool:
return text.startswith(self.start) or text.endswith(self.end)

@on_message(checker=StartEndMatch())
@on_message(matcher=StartEndMatch())
async def _():
...
```
Expand Down

0 comments on commit caa9e9e

Please sign in to comment.