Skip to content

Commit

Permalink
Cleanup markdown sample code (#27)
Browse files Browse the repository at this point in the history
* Use const/let in sample code

* run eslint on markdown code

* run eslint on markdown code
  • Loading branch information
Christopher Baker authored Feb 15, 2018
1 parent c09c754 commit 05826d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Read and write keys on a value
With StealJS, you can import this module directly in a template that is autorendered:

```js
import plugin from 'can-stache-key';
import plugin from "can-stache-key";
```

### CommonJS use
Expand All @@ -22,7 +22,7 @@ Use `require` to load `can-stache-key` and everything else
needed to create a template that uses `can-stache-key`:

```js
var plugin = require("can-stache-key");
import plugin from "can-stache-key";
```

### Standalone use
Expand Down

0 comments on commit 05826d0

Please sign in to comment.