1
0
mirror of https://github.com/wqking/eventpp.git synced 2024-12-25 23:30:49 +08:00

fix incorrect output example in tutorial 4

Signed-off-by: marsCatXDU <marscatcn@live.com>
This commit is contained in:
marsCatXDU 2022-07-21 16:30:37 +08:00
parent 4a978a2e5d
commit 2af18c9d98

View File

@ -159,7 +159,14 @@ callbackList();
```
**Output**
> Got callback 1.
> Got callback 3.
> forEach(Handle, Callback), invoked 0
> forEach(Handle, Callback), invoked 1
> forEach(Handle, Callback), removed second callback
> forEach(Handle, Callback), invoked 2
> forEach(Callback), invoked
> forEach(Callback), invoked
> Got callback 1.
> Got callback 3.
**Remarks**