Skip to content

Commit ee6a99e

Browse files
committed
docs: fix typos
1 parent 64ccc5c commit ee6a99e

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ npm install react-a11y
2323

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

2929
```js

docs/rules/button-role-space.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

88

docs/rules/hidden-uses-tabindex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# hidden-uses-tabindex
22

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

docs/rules/mouse-events-map-to-key-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

88

docs/rules/onclick-uses-role.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Enforce visible, non-interactive elements with click handlers use role
44
attribute. Visible means that it is not hidden from a screen reader. Examples of
55
non-interactive elements are `div`, `section`, and a elements without a `href`
6-
prop.The purpose of the role attribute is to identify to screenreaders the exact
6+
prop. The purpose of the role attribute is to identify to screenreaders the exact
77
function of an element.
88

99

docs/rules/redundant-alt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ words such as *image*, *photo*, and/or *picture*.
88
## options
99

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

1414
## Passes

0 commit comments

Comments
 (0)