File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -445,7 +445,7 @@ func A11yHazardsFromStrings(strings []string) []A11yHazard {
445445type A11yExemption string
446446
447447const (
448- A11yExemptionEAASisproportionateBurden A11yExemption = "eaa-disproportionate-burden"
448+ A11yExemptionEAADisproportionateBurden A11yExemption = "eaa-disproportionate-burden"
449449 A11yExemptionEAAFundamentalAlteration A11yExemption = "eaa-fundamental-alteration"
450450 A11yExemptionEAAMicroenterprise A11yExemption = "eaa-microenterprise"
451451)
Original file line number Diff line number Diff line change @@ -808,11 +808,11 @@ func (m PubMetadataAdapter) a11yHazards() []manifest.A11yHazard {
808808
809809func (m PubMetadataAdapter ) a11yExemptions () []manifest.A11yExemption {
810810 values := m .Values (VocabularyA11Y + "exemption" )
811- hazards := make ([]manifest.A11yExemption , len (values ))
811+ exemptions := make ([]manifest.A11yExemption , len (values ))
812812 for i , v := range values {
813- hazards [i ] = manifest .A11yExemption (v )
813+ exemptions [i ] = manifest .A11yExemption (v )
814814 }
815- return hazards
815+ return exemptions
816816}
817817
818818func (m * PubMetadataAdapter ) seedBelongsToData () {
Original file line number Diff line number Diff line change 2323
2424 <meta name =" a11y:exemption" content =" eaa-microenterprise" />
2525 <meta name =" a11y:exemption" content =" eaa-fundamental-alteration" />
26+ <meta name =" a11y:exemption" content =" eaa-disproportionate-burden" />
2627 </metadata >
2728 <manifest >
2829 <item id =" titlepage" href =" titlepage.xhtml" />
Original file line number Diff line number Diff line change 2626
2727 <meta property =" a11y:exemption" >eaa-microenterprise</meta >
2828 <meta property =" a11y:exemption" >eaa-fundamental-alteration</meta >
29+ <meta property =" a11y:exemption" >eaa-disproportionate-burden</meta >
2930
3031 </metadata >
3132 <manifest >
You can’t perform that action at this time.
0 commit comments