Skip to content

Commit 13d080c

Browse files
committed
Update README.md
1 parent a57c08c commit 13d080c

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To react to events, event streams are provided as composable first class objects
1010

1111
For seamless integration with existing code, _reactive domains_ encapsulate a reactive sub-system, with an input interface to trigger changes imperatively, and an output interface to apply side effects.
1212

13-
As an alternative to implementing change propagation or callback-based approaches manually, using Cpp.React results in less boilerplate code and better scalability due to the guarentee of avoiding unnecessary recalculations and glitches.
13+
As an alternative to implementing change propagation or callback-based approaches manually, using Cpp.React results in less boilerplate code and better scalability due to the guarentees of avoiding unnecessary recalculations and glitches.
1414
Furthermore, since functional purity is maintained in each reactive domain, the propagation engine can safely support implicit parallelism for the updating process.
1515
Behind the scenes, task-based programming and dynamic chunking based on collected timing data are employed to optimize parallel utilization.
1616

@@ -19,16 +19,16 @@ The documentation is still incomplete, but it already contains plenty of useful
1919
It can be found in the [wiki](https://github.com/schlangster/cpp.react/wiki).
2020

2121
# Development
22-
This library is still work-in-progress and should not be considered release quality yet.
23-
That being said, it's in a usable state, has been actively developed during the last 6 months and has seen a fair share of testing and tuning during that time.
22+
Cpp.React is a work-in-progress and should not be considered release quality yet.
23+
The project has been actively developed for about 6 months and has seen a fair share of testing and tuning during that time, so it's in a usable state.
2424

2525
### Compiling
26-
So far, Cpp.React has only been tested in Visual Studio 2013 as that's the development environment used to create it.
26+
At the moment, the only support build environment is Visual Studio 2013.
2727

28-
You are welcome to try compiling it with other C++11 compilers/on other platforms and report any issues you encounter.
28+
You are welcome to try other C++11 compilers/platforms and report any issues you encounter.
2929

3030
### Projects
31-
The VS solution currently contains four pojects:
31+
The VS solution contains the following pojects:
3232

3333
* `CppReact` - The library itself.
3434
* `CppReactBenchmark` - A number of benchmarks used to compare the different propagation strategies.
@@ -43,7 +43,7 @@ Cpp.React uses several external dependencies, but only one of them is mandatory:
4343
* [Boost C++ Libraries](http://www.boost.org/) (optional, to use ReactiveLoop, which requires boost::coroutine)
4444

4545
TBB is required, because it enables the parallel propagation strategies.
46-
Future plans are to separate the multi-threaded and single-threaded propagation engines more cleanly to remove that dependency if parallelism is not used.
46+
Future plans are to separate the multi-threaded and single-threaded propagation engines more cleanly to remove the TBB dependency if parallelism is not used.
4747

4848
# Features by example
4949

0 commit comments

Comments
 (0)