Skip to content

Commit cbd762a

Browse files
committed
Fix typo.
1 parent 9cda6f7 commit cbd762a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎general-patterns/for-in-loops.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656

5757
// preferred 2
58-
// benefit is you can avoid naming collisions is case the `man` object has redefined `hasOwnProperty`
58+
// benefit is you can avoid naming collisions in case the `man` object has redefined `hasOwnProperty`
5959
for(variinman){
6060
if(Object.prototype.hasOwnProperty.call(man,i)){// filter
6161
console.log(i,":",man[i]);

0 commit comments

Comments
(0)