From 60fd8611cdea3768c0cf1b1bcc4f2a040f9a35d8 Mon Sep 17 00:00:00 2001 From: Jeroen Bourgois Date: Wed, 23 Mar 2016 14:59:29 +0100 Subject: [PATCH] Update README.md typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ac1d1b20..ff5164c98 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ class App extends React.Component { | Property | Type | Default | Description | |---------------|----------|--------------|----------------------------------------------------------------| | reducer | function | | optional user-defined reducer for scenes, you may want to use it to intercept all actions and put your custom logic | -| createReducer | function | | function that return reducer function for {initialState, scenes} param, you may wrap Reducer(param) with your custom reducer, check Flux usage section below| +| createReducer | function | | function that returns a reducer function for {initialState, scenes} param, you may wrap Reducer(param) with your custom reducer, check Flux usage section below| | other props | | | all properties that will be passed to all your scenes | | children | | required (if no scenes property passed)| Scene root element | | scenes | object | optional | scenes for Router created with Actions.create. This will allow to create all actions BEFORE React processing. If you don't need it you may pass Scene root element as children |