Skip to content

Commit

Permalink
Fix extra parens
Browse files Browse the repository at this point in the history
  • Loading branch information
hzoo committed Feb 20, 2015
1 parent b37f406 commit 49104ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ if (isSessionValid) {

```js
// Execute a regex
var matches = item.match(/ID_([^\n]+)=([^\n]+)/));
var matches = item.match(/ID_([^\n]+)=([^\n]+)/);

// Usage: loadUser(5, function() { ... })
function loadUser(id, cb) {
Expand Down

0 comments on commit 49104ae

Please sign in to comment.