Skip to content

Commit c5cbd86

Browse files
committed
2 parents 30b74f6 + 149f5ab commit c5cbd86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class SomeComponent implements OnDestroy {
3737

3838
### Bootstrapping
3939

40-
It is recommended to create the app store in a factory, for supporting redux (and the redux dev tools) inside Angular2's zone. That means the app store will only be created once angular is bootstrapped:
40+
Creating the app store in a factory is recommended. This will support redux (and the redux dev tools) inside Angular2's zone and means that the app store will only be created after angular is bootstrapped:
4141
```js
4242
import {AppStore} from "angular2-redux";
4343
import {bootstrap} from "angular2/platform/browser";

src/actions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {AppStore} from "./app-store";
55
*/
66
export class Actions {
77

8-
private appStore:AppStore = null;
8+
protected appStore:AppStore = null;
99

1010
constructor(appStore:AppStore) {
1111
this.appStore = appStore;

0 commit comments

Comments
 (0)