From 354659e2cd1b27d6280c8139ef6e011fb65b2052 Mon Sep 17 00:00:00 2001 From: Mike Bostock Date: Wed, 25 Nov 2015 11:31:04 -0800 Subject: [PATCH] Update README. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ce8b54..ae2eefa 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Returns an interpolator between the two arbitrary values *a* and *b*. The interp 4. If *b* is an object and not coercible to a number, [object](#object) is used. 5. Otherwise, [number](#number) is used. -Based on the chosen interpolator, *a* is coerced to a suitable corresponding type. The behavior of this method may be augmented to support additional types by pushing custom interpolator factories onto the [interpolators](#interpolators) array. +Based on the chosen interpolator, *a* is coerced to a suitable corresponding type. The behavior of this method may be augmented to support additional types by pushing custom interpolator factories onto the [values](#values) array. # number(a, b) @@ -185,3 +185,5 @@ Like [cubehelixGamma](#cubehelixGamma), but does not use the shortest path betwe * A new [cubehelix](#cubehelix) color space! * New “long” methods for hue interpolation in [HSL](#hslLong), [HCL](#hclLong) and [Cubehelix](#cubehelixLong). + +* Renamed the generic interpolate method and interpolators array to [value](#value) and [values](#values), respectively.