Skip to content

Commit c5a4608

Browse files
committed
Fix typos
1 parent 4a006ac commit c5a4608

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

JavaScript/4-introspection.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ console.dir({
1717
max: max.name,
1818
});
1919

20-
console.log('Argumants: ');
20+
console.log('Arguments: ');
2121
console.dir({
2222
inc: inc.length,
2323
sum: sum.length,
2424
max: max.length
2525
});
2626

2727
console.log('Anonymous function: ' + function(x) { return x; }.name);
28-
console.log('Anonymous lambda' + (x => x).name);
28+
console.log('Anonymous lambda: ' + (x => x).name);
2929

3030
console.log('toString: ');
3131
console.dir({

0 commit comments

Comments
 (0)