Skip to content

Commit

Permalink
docs(website): fix typo in examples (#523)
Browse files Browse the repository at this point in the history
  • Loading branch information
ByScripts authored and Guria committed Nov 30, 2016
1 parent 265b688 commit 1d4e21f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/docs/content/in-depth/02_controller.en.md
Expand Up @@ -11,15 +11,15 @@ Your application will have one single controller:
```js
import {Controller} from 'cerebral'

const conroller = Controller({})
const controller = Controller({})
```

The controller is where you define how your application is going to work. Everything from the state, to signals, providers and modules.

```js
import {Controller} from 'cerebral'

const conroller = Controller({
const controller = Controller({
state: {},
signals: {},
modules: {},
Expand All @@ -35,7 +35,7 @@ import {Container} from 'cerebral/react'
import {render} from 'react-dom'
import App from './components/App'

const conroller = Controller({
const controller = Controller({
state: {},
signals: {},
modules: {},
Expand Down

0 comments on commit 1d4e21f

Please sign in to comment.