Skip to content

Commit 6d4ada4

Browse files
committed
Fix overlong line of code in Chapter 4
1 parent ad24a95 commit 6d4ada4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

04_data.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,8 @@ itself by the use of the word `in`.
666666
[source,javascript]
667667
----
668668
for (var event in map)
669-
console.log("The correlation for '" + event + "' is " + map[event]);
669+
console.log("The correlation for '" + event +
670+
"' is " + map[event]);
670671
// → The correlation for 'pizza' is 0.069
671672
// → The correlation for 'touched tree' is -0.081
672673
----

0 commit comments

Comments
 (0)