@@ -34,10 +34,9 @@ It's still incomplete, but it already contains plenty of useful information and
3434
3535## Development
3636
37- This library is still a work-in-progress and should not be considered release quality yet.
38-
39- Don't let this statement stop you from giving it a try though!
40- It's in a usable state and has already seen a fair share of testing and tuning during it's development so far.
37+ This library is a work-in-progress and should not be considered release quality yet.
38+ Don't let this statement stop you from giving it a try though.
39+ It's in a usable state and has already received a fair amount of testing and tuning.
4140
4241
4342### Compiling
@@ -98,12 +97,12 @@ SignalT<int> area = MakeSignal(
9897 });
9998```
10099```
101- // Signal values can be accessed imperativly at any time,
102- // but only VarSignals can be directly manipulated.
100+ // Signal values can be accessed imperativly
103101cout << "area: " << area.Value() << endl; // => area: 2
104102
105- // Width changed, so area is re-calculated automatically
103+ // VarSignals can be manipulated imperatively
106104width.Set(10);
105+ // Width changed, so area is re-calculated automatically
107106
108107cout << "area: " << area.Value() << endl; // => area: 20
109108```
@@ -143,8 +142,8 @@ rightClicked.Emit(); // => clicked!
143142
144143### Parallelism and concurrency
145144
146- The change propagation is handled implicitly by a propagation engine .
147- Depending on the selected engine , updates can be parallelized:
145+ The change propagation is handled implicitly.
146+ Depending on the selected concurrency policy , updates can be parallelized:
148147
149148```C++
150149using namespace react;
@@ -192,7 +191,6 @@ using namespace react;
192191
193192* [ Examples] ( https://github.com/schlangster/cpp.react/tree/master/examples/src )
194193* [ Test cases] ( https://github.com/schlangster/cpp.react/tree/master/tests/src )
195- * [ Benchmarks] ( https://github.com/schlangster/cpp.react/blob/master/benchmarks/src/BenchmarkLifeSim.h )
196194
197195## Acknowledgements
198196
0 commit comments