Skip to content

Commit

Permalink
Update examples in README to use js syntax highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
venables committed Jan 21, 2017
1 parent cdeeb44 commit 7548e69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ Simply replace your existing `koa` require with `koa-plus`

Old:

```
```js
const Koa = require('koa')
const app = new Koa()
// ...
```

New:

```
```js
const Koa = require('koa-plus')
const app = new Koa()
// ...
Expand All @@ -53,7 +53,7 @@ middleware, simply pass the options to the constructor.

#### Example

```
```js
const Koa = require('koa-plus')

const app = new Koa({
Expand Down

0 comments on commit 7548e69

Please sign in to comment.