Skip to content

Commit

Permalink
Fix syntax error (my fault for a bad code review)
Browse files Browse the repository at this point in the history
  • Loading branch information
littledan authored Dec 20, 2018
1 parent b463c67 commit 6710ad1
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 @@ -104,7 +104,7 @@ import { len, map } from "std:builtins";

const ar = [1, 2, 3];
const st = new Set([4, 5, 6, 7]);
const mp = new Map([["e", 8], ["n", 9], ["z", 0], ["o", 1], ["t", 2]);
const mp = new Map([["e", 8], ["n", 9], ["z", 0], ["o", 1], ["t", 2]]);

len(ar); // => 3
len(st); // => 4
Expand Down

0 comments on commit 6710ad1

Please sign in to comment.