Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hit9 committed Apr 15, 2024
1 parent 8b79258 commit 73c7a21
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ A lightweight signal/event library for C++, similar to Python's blinker, but des
1. A signal board contains at most N signals.
Where a signal is just composed of an id and name.

2. A signal's name should be delimited by dots, e.g. "movement.arrived"
2. A signal's name should be delimited by dots, e.g. "movement.arrived".

Signals are structured into a trie by names in the pre-process stage.

3. A subscriber is just a function.
It can connect to one or multiple signals by providing signal names,
or prefix patterns e.g. "key.*".
or prefix patterns e.g. "movement.*".

4. Connections are owned by user, the board doesn't manage them.

Expand Down

0 comments on commit 73c7a21

Please sign in to comment.