@@ -388,7 +388,7 @@ export const openApi3Rules = (options: OpenApi3RulesOptions): CompareRules => {
388388    '/*' : operationAnnotationRule , 
389389  } 
390390
391-   const  pathItemChildrenRules  =  ( options : OpenApi3RulesOptions ) : CompareRules  =>  ( { 
391+   const  pathItemObjectRules  =  ( options : OpenApi3RulesOptions ) : CompareRules  =>  ( { 
392392    $ : pathChangeClassifyRule , 
393393    mapping : options . mode  ===  COMPARE_MODE_OPERATION  ? singleOperationPathMappingResolver  : pathMappingResolver , 
394394    '/description' : {  $ : allAnnotation  } , 
@@ -428,7 +428,7 @@ export const openApi3Rules = (options: OpenApi3RulesOptions): CompareRules => {
428428    } , 
429429    '/pathItems' : { 
430430      $ : [ nonBreaking ,  breaking ,  breaking ] , 
431-       '/*' : pathItemChildrenRules ( options ) , 
431+       '/*' : pathItemObjectRules ( options ) , 
432432    } , 
433433    '/securitySchemes' : { 
434434      $ : [ breaking ,  nonBreaking ,  breaking ] , 
@@ -456,7 +456,7 @@ export const openApi3Rules = (options: OpenApi3RulesOptions): CompareRules => {
456456    '/paths' : { 
457457      $ : allUnclassified , 
458458      mapping : options . mode  ===  COMPARE_MODE_OPERATION  ? singleOperationPathMappingResolver  : pathMappingResolver , 
459-       '/*' : pathItemChildrenRules ( options ) , 
459+       '/*' : pathItemObjectRules ( options ) , 
460460    } , 
461461    '/components' : componentsRule , 
462462    '/security' : { 
0 commit comments