Skip to content

Commit 5f9b9d5

Browse files
eglassmanmbostock
authored andcommitted
fixed inconsistent subheading levels (### or ####)
1 parent b080bf3 commit 5f9b9d5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

API.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ D3 uses [semantic versioning](http://semver.org/). The current version is expose
3939

4040
Array manipulation, ordering, searching, summarizing, etc.
4141

42-
#### [Statistics](https://github.com/d3/d3-array/blob/master/README.md#statistics)
42+
### [Statistics](https://github.com/d3/d3-array/blob/master/README.md#statistics)
4343

4444
Methods for computing basic summary statistics.
4545

@@ -53,7 +53,7 @@ Methods for computing basic summary statistics.
5353
* [d3.variance](https://github.com/d3/d3-array/blob/master/README.md#variance) - compute the variance of an array of numbers.
5454
* [d3.deviation](https://github.com/d3/d3-array/blob/master/README.md#deviation) - compute the standard deviation of an array of numbers.
5555

56-
#### [Search](https://github.com/d3/d3-array/blob/master/README.md#search)
56+
### [Search](https://github.com/d3/d3-array/blob/master/README.md#search)
5757

5858
Methods for searching arrays for a specific element.
5959

@@ -67,7 +67,7 @@ Methods for searching arrays for a specific element.
6767
* [d3.ascending](https://github.com/d3/d3-array/blob/master/README.md#ascending) - compute the natural order of two values.
6868
* [d3.descending](https://github.com/d3/d3-array/blob/master/README.md#descending) - compute the natural order of two values.
6969

70-
#### [Transformations](https://github.com/d3/d3-array/blob/master/README.md#transformations)
70+
### [Transformations](https://github.com/d3/d3-array/blob/master/README.md#transformations)
7171

7272
Methods for transforming arrays and for generating new arrays.
7373

@@ -81,7 +81,7 @@ Methods for transforming arrays and for generating new arrays.
8181
* [d3.transpose](https://github.com/d3/d3-array/blob/master/README.md#transpose) - transpose an array of arrays.
8282
* [d3.zip](https://github.com/d3/d3-array/blob/master/README.md#zip) - transpose a variable number of arrays.
8383

84-
#### [Histograms](https://github.com/d3/d3-array/blob/master/README.md#histograms)
84+
### [Histograms](https://github.com/d3/d3-array/blob/master/README.md#histograms)
8585

8686
Bin discrete samples into continuous, non-overlapping intervals.
8787

@@ -149,15 +149,15 @@ Select a one- or two-dimensional region using the mouse or touch.
149149

150150
Handy data structures for elements keyed by string.
151151

152-
#### [Objects](https://github.com/d3/d3-collection/blob/master/README.md#objects)
152+
### [Objects](https://github.com/d3/d3-collection/blob/master/README.md#objects)
153153

154154
Methods for converting associative arrays (objects) to arrays.
155155

156156
* [d3.keys](https://github.com/d3/d3-collection/blob/master/README.md#keys) - list the keys of an associative array.
157157
* [d3.values](https://github.com/d3/d3-collection/blob/master/README.md#values) - list the values of an associated array.
158158
* [d3.entries](https://github.com/d3/d3-collection/blob/master/README.md#entries) - list the key-value entries of an associative array.
159159

160-
#### [Maps](https://github.com/d3/d3-collection/blob/master/README.md#maps)
160+
### [Maps](https://github.com/d3/d3-collection/blob/master/README.md#maps)
161161

162162
Like ES6 Map, but with string keys and a few other differences.
163163

@@ -174,7 +174,7 @@ Like ES6 Map, but with string keys and a few other differences.
174174
* [*map*.empty](https://github.com/d3/d3-collection/blob/master/README.md#map_empty) - returns false if the map has at least one entry.
175175
* [*map*.size](https://github.com/d3/d3-collection/blob/master/README.md#map_size) - compute the number of entries.
176176

177-
#### [Sets](https://github.com/d3/d3-collection/blob/master/README.md#sets)
177+
### [Sets](https://github.com/d3/d3-collection/blob/master/README.md#sets)
178178

179179
Like ES6 Set, but with string keys and a few other differences.
180180

@@ -188,7 +188,7 @@ Like ES6 Set, but with string keys and a few other differences.
188188
* [*set*.empty](https://github.com/d3/d3-collection/blob/master/README.md#set_empty) - returns true if the set has at least one value.
189189
* [*set*.size](https://github.com/d3/d3-collection/blob/master/README.md#set_size) - compute the number of values.
190190

191-
#### [Nests](https://github.com/d3/d3-collection/blob/master/README.md#nests)
191+
### [Nests](https://github.com/d3/d3-collection/blob/master/README.md#nests)
192192

193193
Group data into arbitrary hierarchies.
194194

@@ -465,7 +465,7 @@ Geographic projections, shapes and math.
465465
* [*stream*.polygonEnd](https://github.com/d3/d3-geo/blob/master/README.md#stream_polygonEnd) -
466466
* [*stream*.sphere](https://github.com/d3/d3-geo/blob/master/README.md#stream_sphere) -
467467

468-
#### [Transforms](https://github.com/d3/d3-geo/blob/master/README.md#transforms)
468+
### [Transforms](https://github.com/d3/d3-geo/blob/master/README.md#transforms)
469469

470470
* [d3.geoIdentity](https://github.com/d3/d3-geo/blob/master/README.md#geoIdentity) - scale, translate or clip planar geometry.
471471
* [d3.geoTransform](https://github.com/d3/d3-geo/blob/master/README.md#geoTransform) - define a custom geometry transform.

0 commit comments

Comments
 (0)