Skip to content

Commit

Permalink
docs: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tbroadley committed Dec 22, 2017
1 parent 64ccc5c commit ee6a99e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ npm install react-a11y

In your main application file, require the module and call it, you'll start
getting warnings in the console as your app renders. Note that by default all
rules are turned `off` s oyou need to turn them on first (by setting them to
rules are turned `off` s you need to turn them on first (by setting them to
`"warn"` or `"error"`).

```js
Expand Down
2 changes: 1 addition & 1 deletion docs/rules/button-role-space.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Enforce that elements which have the `role="button"`
also have an `onKeyDown` handler that handles Space or Enter
(this is isn't actually checked) for poeple that are using a
(this is isn't actually checked) for people that are using a
keyboard-only device.


Expand Down
2 changes: 1 addition & 1 deletion docs/rules/hidden-uses-tabindex.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# hidden-uses-tabindex

Enforce that interactive elements that have been removed from
the accessibility tree usign `aria-hidden` are also removed from
the accessibility tree using `aria-hidden` are also removed from
the tab flow by setting `tabIndex={-1}`. If not, this could result
in a hidden tab stop for screen reader users.

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/mouse-events-map-to-key-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Enforce `onMouseOver`/`onMouseOut` are accompanied by
`onFocus`/`onBlur`. Coding for the keyboard is important for users with
physical disabilities who cannot use a mouse, AT compatability, and screenreader
physical disabilities who cannot use a mouse, AT compatibility, and screenreader
users.


Expand Down
2 changes: 1 addition & 1 deletion docs/rules/onclick-uses-role.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Enforce visible, non-interactive elements with click handlers use role
attribute. Visible means that it is not hidden from a screen reader. Examples of
non-interactive elements are `div`, `section`, and a elements without a `href`
prop.The purpose of the role attribute is to identify to screenreaders the exact
prop. The purpose of the role attribute is to identify to screenreaders the exact
function of an element.


Expand Down
2 changes: 1 addition & 1 deletion docs/rules/redundant-alt.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ words such as *image*, *photo*, and/or *picture*.
## options

This rule takes the following options:
1. Words to look for when looking for redudant words. (**Array(String)**)
1. Words to look for when looking for redundant words. (**Array(String)**)
default: `["image","picture","photo"]`

## Passes
Expand Down

0 comments on commit ee6a99e

Please sign in to comment.