Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Mat Taylor authored and Mat Taylor committed Oct 22, 2022
1 parent e303782 commit 1db95df
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 @@ -20,7 +20,7 @@ This library is highly optimised with zero copy operations where possible. The u

```javascript
require('objix')
var o = { a: 1 }.map(v => v + 1)).log()
var o = { a: 1 }.map(v => v + 1).log()
```

## Getting Started - Browser
Expand All @@ -29,7 +29,7 @@ This library is highly optimised with zero copy operations where possible. The u
<script src="https://cdn.jsdelivr.net/gh/mattaylor/objix@main/objix.min.js"></script>

<script>
var o = { a: 1 }.map(v => v + 1)).log()
var o = { a: 1 }.map(v => v + 1).log()
</script>
```

Expand Down

0 comments on commit 1db95df

Please sign in to comment.