Skip to content

Commit

Permalink
Fixes scotthmurray#25, misspelling
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Murray committed Nov 14, 2017
1 parent 78deb23 commit cf4d229
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion chapter_06/02_drawing_divs_height.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
div.bar {
display: inline-block;
width: 20px;
height: 75px; /* Gets overriden by D3-assigned height below */
height: 75px; /* Gets overridden by D3-assigned height below */
background-color: teal;
}

Expand Down
2 changes: 1 addition & 1 deletion chapter_06/03_drawing_divs_spaced.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
div.bar {
display: inline-block;
width: 20px;
height: 75px; /* Gets overriden by D3-assigned height below */
height: 75px; /* Gets overridden by D3-assigned height below */
margin-right: 2px;
background-color: teal;
}
Expand Down
2 changes: 1 addition & 1 deletion chapter_06/04_power_of_data.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
div.bar {
display: inline-block;
width: 20px;
height: 75px; /* Gets overriden by D3-assigned height below */
height: 75px; /* Gets overridden by D3-assigned height below */
margin-right: 2px;
background-color: teal;
}
Expand Down
2 changes: 1 addition & 1 deletion chapter_06/05_power_of_data_more_points.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
div.bar {
display: inline-block;
width: 20px;
height: 75px; /* Gets overriden by D3-assigned height below */
height: 75px; /* Gets overridden by D3-assigned height below */
margin-right: 2px;
background-color: teal;
}
Expand Down
2 changes: 1 addition & 1 deletion chapter_06/06_power_of_data_random.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
div.bar {
display: inline-block;
width: 20px;
height: 75px; /* Gets overriden by D3-assigned height below */
height: 75px; /* Gets overridden by D3-assigned height below */
margin-right: 2px;
background-color: teal;
}
Expand Down
2 changes: 1 addition & 1 deletion chapter_06/07_power_of_data_rounded.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
div.bar {
display: inline-block;
width: 20px;
height: 75px; /* Gets overriden by D3-assigned height below */
height: 75px; /* Gets overridden by D3-assigned height below */
margin-right: 2px;
background-color: teal;
}
Expand Down
2 changes: 1 addition & 1 deletion chapter_06/12_making_a_bar_chart_divs.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
div.bar {
display: inline-block;
width: 20px;
height: 75px; /* Gets overriden by D3-assigned height below */
height: 75px; /* Gets overridden by D3-assigned height below */
margin-right: 2px;
background-color: teal;
}
Expand Down

0 comments on commit cf4d229

Please sign in to comment.