Skip to content

Commit 46fba6c

Browse files
committed
Fix example usage to be runnable
1 parent 7eca2a7 commit 46fba6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A JavaScript tool that allows you to debug your JavaScript by giving you a [stac
88
```js
99
var callback = function(stackframes) {
1010
var stringifiedStack = stackframes.map(function(sf) {
11-
sf.toString();
11+
return sf.toString();
1212
}).join('\n');
1313
console.log(stringifiedStack);
1414
};

0 commit comments

Comments
 (0)