File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ function schemeicyclical(interpolate) {
176
176
177
177
export function ordinalScheme ( scheme ) {
178
178
const s = `${ scheme } ` . toLowerCase ( ) ;
179
- if ( ! ordinalSchemes . has ( s ) ) throw new Error ( `unknown scheme: ${ s } ` ) ;
179
+ if ( ! ordinalSchemes . has ( s ) ) throw new Error ( `unknown ordinal scheme: ${ s } ` ) ;
180
180
return ordinalSchemes . get ( s ) ;
181
181
}
182
182
@@ -255,7 +255,7 @@ const quantitativeSchemes = new Map([
255
255
256
256
export function quantitativeScheme ( scheme ) {
257
257
const s = `${ scheme } ` . toLowerCase ( ) ;
258
- if ( ! quantitativeSchemes . has ( s ) ) throw new Error ( `unknown scheme: ${ s } ` ) ;
258
+ if ( ! quantitativeSchemes . has ( s ) ) throw new Error ( `unknown quantitative scheme: ${ s } ` ) ;
259
259
return quantitativeSchemes . get ( s ) ;
260
260
}
261
261
You can’t perform that action at this time.
0 commit comments