Skip to content

Commit 4c06994

Browse files
committed
Minor documentation update
1 parent a2ffe81 commit 4c06994

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Header-only C++ event, statemachine and active object framework
2222
- Unhandled event support
2323
- Deferred event support (needs external framework)
2424
- Independent of event type (can be int, enum, shared pointer...)
25-
- Designed to call member functions of a C++ class or interface
25+
- Designed to call member functions of a C++ interface
2626
- It is fairly simple to write statemachines "by hand" without a code generator
2727
- Suitable for small systems: state and transition declarations can be const and in RO section
2828
- Allow non-capturing lambdas as transition action
@@ -33,7 +33,7 @@ Header-only C++ event, statemachine and active object framework
3333

3434
### [Active Object Framework](#introduction-to-active-object-framework)
3535

36-
- Implements active framework pattern
36+
- Implements active object framework pattern
3737
- Embedded version available that works without heap usage
3838
- Domain implementation with single worker thread
3939

@@ -47,7 +47,7 @@ A simple event class which is allocated from heap is declared via a class that i
4747
{
4848
};
4949

50-
The integer "0" is the ID of the event and can be accessed via:
50+
The integer template parameter "0" is the ID of the event and can be accessed via:
5151

5252
SimpleTestEvent::kId // static context
5353
SimpleTestEvent::MakeShared()->Id() // instance context

0 commit comments

Comments
 (0)