diff --git a/CHANGES.md b/CHANGES.md
index dc85e51a..bf58fbc9 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -857,17 +857,17 @@ var color = d3.scaleOrdinal(d3.schemeCategory10);
[Sequential scales](https://github.com/d3/d3-scale/blob/master/README.md#scaleSequential), are a new class of scales with a fixed output [interpolator](https://github.com/d3/d3-scale/blob/master/README.md#sequential_interpolator) instead of a [range](https://github.com/d3/d3-scale/blob/master/README.md#continuous_range). Typically these scales are used to implement continuous sequential or diverging color schemes. Inspired by Matplotlib’s new [perceptually-motived colormaps](https://bids.github.io/colormap/), 4.0 now features [viridis](https://github.com/d3/d3-scale/blob/master/README.md#interpolateViridis), [inferno](https://github.com/d3/d3-scale/blob/master/README.md#interpolateInferno), [magma](https://github.com/d3/d3-scale/blob/master/README.md#interpolateMagma), [plasma](https://github.com/d3/d3-scale/blob/master/README.md#interpolatePlasma) interpolators for use with sequential scales. Using [d3.quantize](https://github.com/d3/d3-interpolate/blob/master/README.md#quantize), these interpolators can also be applied to [quantile](https://github.com/d3/d3-scale/blob/master/README.md#quantile-scales), [quantize](https://github.com/d3/d3-scale/blob/master/README.md#quantize-scales) and [threshold](https://github.com/d3/d3-scale/blob/master/README.md#threshold-scales) scales.
-[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateViridis)
-[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateInferno)
-[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateMagma)
-[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolatePlasma)
+[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateViridis)
+[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateInferno)
+[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateMagma)
+[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolatePlasma)
4.0 also ships new Cubehelix schemes, including [Dave Green’s default](https://github.com/d3/d3-scale/blob/master/README.md#interpolateCubehelixDefault) and a [cyclical rainbow](https://github.com/d3/d3-scale/blob/master/README.md#interpolateRainbow) inspired by [Matteo Niccoli](https://mycarta.wordpress.com/2013/02/21/perceptual-rainbow-palette-the-method/):
-[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateCubehelixDefault)
-[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateRainbow)
-[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateWarm)
-[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateCool)
+[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateCubehelixDefault)
+[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateRainbow)
+[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateWarm)
+[
](https://github.com/d3/d3-scale/blob/master/README.md#interpolateCool)
For even more sequential and categorical color schemes, see [d3-scale-chromatic](https://github.com/d3/d3-scale-chromatic).