Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Correct typo in aria attributes' names
Browse files Browse the repository at this point in the history
There should not be a dash before “by”:

- http://www.w3.org/TR/wai-aria/states_and_properties#aria-labelledby
- http://www.w3.org/TR/wai-aria/states_and_properties#aria-describedby

This fixes a typo I introduced in zendframework/zf2/#5989.
  • Loading branch information
marek-saji committed Aug 1, 2015
1 parent 9dd3af0 commit 782d79c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/View/Helper/AbstractHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ abstract class AbstractHelper extends BaseAbstractHelper
'onvolumechange' => true,
'onwaiting' => true,
'role' => true,
'aria-labelled-by' => true,
'aria-described-by' => true,
'aria-labelledby' => true,
'aria-describedby' => true,
'spellcheck' => true,
'style' => true,
'tabindex' => true,
Expand Down

0 comments on commit 782d79c

Please sign in to comment.