Skip to content

Commit 3f644bb

Browse files
committed
fixed README typos
1 parent 07a80af commit 3f644bb

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

d3-201/README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ This example builds something close to a javascript charting template that comes
2525
### Tutorial
2626

2727
##### Part I: Render
28-
The first step is to set up our directory struction. Run the following
28+
The first step is to set up our directory structure. Run the following
2929
command:
3030
<pre>
3131
$ cd D3-201
3232
$ ./_setup_dirs_.py
3333
</pre>
34-
We should see new files:
34+
We should see the following new files.
3535
<br>
3636
<img src="img/file.png" alt="Drawing" style="width: 600px;"/>
3737
</br>
@@ -40,7 +40,7 @@ from the other folders. Open up the index.html file and look at the
4040
structure. Explore and try to determine where these sources point and
4141
take a guess:
4242

43-
1. [basic] What is the purspose each sourced file?
43+
1. [basic] What is the purpose of each sourced file?
4444
2. [intermediate] What determines the number of graphs we will
4545
create?
4646
3. [advanced] How does the graph access the data?
@@ -57,18 +57,18 @@ We should see two heatmaps.
5757

5858
##### Part II: Explanation of app.js
5959
Open `js/app.js` a text editor.
60-
1. Where is `heatmap` invoked?
61-
2. What is the value of `myHeatmap`?
62-
2. Why are we iterating over dataPathArray on line 12?
63-
3. What do you think happens when we use `myHeatmap.height()`?
60+
1. [basic] Where is `heatmap` invoked?
61+
2. [basic] What do you think happens when we use `myHeatmap.height()`?
62+
3. [intermediate] Why are we iterating over dataPathArray on line 12?
63+
4. [advanced] What is the value of `myHeatmap`?
6464

6565
##### Part III: Explanation of heatmap.js
6666
Open `js/heatmap.js` in text editor.
67-
1. Why do we love python? (see lines 3-49)
68-
2. When is the function `chart` invoked?
69-
3. What does `myHeatmap()` expect and why?
70-
4. How can I change the color of both charts?
71-
5. How can I change the color of just one chart?
67+
1. [basic] Why do we love python? (see lines 3-49)
68+
2. [basic] How can I change the color of both charts?
69+
3. [intermediate] How can I change the color of just one chart?
70+
4. [advanced] When is the function `chart` invoked?
71+
5. [advanced] What does `myHeatmap()` expect and why?
7272

7373

7474

0 commit comments

Comments
 (0)