File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ interface ValidateProjectionOptions {
1414export default function validateProjection ( options : ValidateProjectionOptions ) {
1515 const projection = options . value ;
1616 const styleSpec = options . styleSpec ;
17- const projSpec = styleSpec . projection ;
17+ const projectionSpec = styleSpec . projection ;
1818 const style = options . style ;
1919
2020 const rootType = getType ( projection ) ;
@@ -26,11 +26,11 @@ export default function validateProjection(options: ValidateProjectionOptions) {
2626
2727 let errors = [ ] ;
2828 for ( const key in projection ) {
29- if ( projSpec [ key ] ) {
29+ if ( projectionSpec [ key ] ) {
3030 errors = errors . concat ( options . validateSpec ( {
3131 key,
3232 value : projection [ key ] ,
33- valueSpec : projSpec [ key ] ,
33+ valueSpec : projectionSpec [ key ] ,
3434 style,
3535 styleSpec
3636 } ) ) ;
You can’t perform that action at this time.
0 commit comments