Skip to content

Commit 71cbd90

Browse files
docs: fix typos and grammar issues (#4647)
<< Describe the changes >> Requested changes made --------- Co-authored-by: Dan Bjorge <[email protected]>
1 parent 8060ada commit 71cbd90

16 files changed

+76
-76
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Axe is an accessibility testing engine for websites and other HTML-based user in
1414

1515
## The Accessibility Rules
1616

17-
Axe-core has different types of rules, for WCAG 2.0, 2.1, 2.2 on level A, AA and AAA as well as a number of best practices that help you identify common accessibility practices like ensuring every page has an `h1` heading, and to help you avoid "gotchas" in ARIA like where an ARIA attribute you used will get ignored. The complete list of rules, grouped WCAG level and best practice, can found in [doc/rule-descriptions.md](./doc/rule-descriptions.md).
17+
Axe-core has different types of rules, for WCAG 2.0, 2.1, 2.2 on level A, AA and AAA as well as a number of best practices that help you identify common accessibility practices like ensuring every page has an `h1` heading, and to help you avoid "gotchas" in ARIA like where an ARIA attribute you used will get ignored. The complete list of rules, grouped WCAG level and best practice, can be found in [doc/rule-descriptions.md](./doc/rule-descriptions.md).
1818

1919
With axe-core, you can find **on average 57% of WCAG issues automatically**. Additionally, axe-core will return elements as "incomplete" where axe-core could not be certain, and manual review is needed.
2020

@@ -65,7 +65,7 @@ Axe was built to reflect how web development actually works. It works with all m
6565
- It's actively supported by [Deque Systems](https://www.deque.com), a major accessibility vendor.
6666
- It integrates with your existing functional/acceptance automated tests.
6767
- It automatically determines which rules to run based on the evaluation context.
68-
- Axe supports in-memory fixtures, static fixtures, integration tests and iframes of infinite depth.
68+
- Axe supports in-memory fixtures, static fixtures, integration tests, and iframes of infinite depth.
6969
- Axe is highly configurable.
7070

7171
## Supported Browsers

doc/API.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Axe Javascript Accessibility API
1+
# Axe JavaScript Accessibility API
22

33
## Table of Contents
44

@@ -49,16 +49,16 @@ This section gives a quick description of how to use the axe APIs to analyze web
4949
The axe API can be used as part of a broader process that is performed on many, if not all, pages of a website. The API is used to analyze web page content and return a JSON object that lists any accessibility violations found. Here is how to get started:
5050

5151
1. Load page in testing system
52-
2. Optionally, set configuration options for the javascript API (`axe.configure`)
53-
3. Call analyze javascript API (`axe.run`)
52+
2. Optionally, set configuration options for the JavaScript API (`axe.configure`)
53+
3. Call analyze JavaScript API (`axe.run`)
5454
4. Either assert against results or save them for later processing
5555
5. Repeat for any inactive or non-rendered content after making it visible
5656

5757
## Section 2: API Reference
5858

5959
### Overview
6060

61-
The axe APIs are provided in the javascript file axe.js. It must be included in the web page under test, as well as each `iframe` under test. Parameters are sent as javascript function parameters. Results are returned in JSON format.
61+
The axe APIs are provided in the JavaScript file axe.js. It must be included in the web page under test, as well as each `iframe` under test. Parameters are sent as JavaScript function parameters. Results are returned in JSON format.
6262

6363
### Full API Reference for Developers
6464

@@ -72,7 +72,7 @@ For a full listing of API offered by axe, clone the repository and run `npm run
7272

7373
### Axe-core Tags
7474

75-
Each rule in axe-core has a number of tags. These provide metadata about the rule. Each rule has one tag that indicates which WCAG version / level it belongs to, or if it doesn't it have the `best-practice` tag. If the rule is required by WCAG, there is a tag that references the success criterion number. For example, the `wcag111` tag means a rule is required for WCAG 2 success criterion 1.1.1.
75+
Each rule in axe-core has a number of tags. These provide metadata about the rule. Each rule has one tag that indicates which WCAG version / level it belongs to, or if it doesn't, it has the `best-practice` tag. If the rule is required by WCAG, there is a tag that references the success criterion number. For example, the `wcag111` tag means a rule is required for WCAG 2 success criterion 1.1.1.
7676

7777
The `experimental`, `ACT`, `TT`, and `section508` tags are only added to some rules. Each rule with a `section508` tag also has a tag to indicate what requirement in old Section 508 the rule is required by. For example `section508.22.a`.
7878

@@ -182,7 +182,7 @@ In this example, we pass in the WCAG 2 A and AA tags into `axe.getRules` to retr
182182

183183
To configure the format of the data used by axe. This can be used to add new rules, which must be registered with the library to execute.
184184

185-
**important**: `axe.configure()` does not communicate configuration calls into iframes. Instead `axe.configure()` must be called with the same argument in each `frame` / `iframe` individually.
185+
**Important**: `axe.configure()` does not communicate configuration calls into iframes. Instead `axe.configure()` must be called with the same argument in each `frame` / `iframe` individually.
186186

187187
#### Description
188188

@@ -213,7 +213,7 @@ axe.configure({
213213
- `reporter` - Used to set the output format that the axe.run function will pass to the callback function. Can pass a reporter name or a custom reporter function. Valid names are:
214214
- `v1` to use the previous version's format: `axe.configure({ reporter: "v1" });`
215215
- `v2` to use the current version's format: `axe.configure({ reporter: "v2" });`
216-
- `raw` to return the raw result data without formating: `axe.configure({ reporter: "raw" });`
216+
- `raw` to return the raw result data without formatting: `axe.configure({ reporter: "raw" });`
217217
- `raw-env` to return the raw result data with environment data: `axe.configure({ reporter: "raw-env" });`
218218
- `no-passes` to return only violation results: `axe.configure({ reporter: "no-passes" });`
219219
- `checks` - Used to add checks to the list of checks used by rules, or to override the properties of existing checks
@@ -567,7 +567,7 @@ The `resultTypes` option can be used to limit the number of nodes for a rule to
567567

568568
After axe has processed all rules normally, it generates a unique selector for all nodes in all rules. This process can be time consuming, especially for pages with lots of nodes. By limiting the nodes to a maximum of one for result types you are not interested in, you can greatly speed up the tail end performance of axe.
569569

570-
Types listed in this option will cause rules that fall under those types to show all nodes. Types _not_ listed will causes rules that fall under one of the missing types to show a maximum of one node. This allows you to still see those results and inform the user of them if appropriate.
570+
Types listed in this option will cause rules that fall under those types to show all nodes. Types _not_ listed will cause rules that fall under one of the missing types to show a maximum of one node. This allows you to still see those results and inform the user of them if appropriate.
571571

572572
```js
573573
axe.run(
@@ -670,7 +670,7 @@ The results of axe are grouped according to their outcome into the following arr
670670
- `passes`: These results indicate what elements passed the rules
671671
- `violations`: These results indicate what elements failed the rules
672672
- `inapplicable`: These results indicate which rules did not run because no matching content was found on the page. For example, with no video, those rules won't run.
673-
- `incomplete`: Also known as "needs review," these results were aborted and require further testing. This can happen either because of technical restrictions to what the rule can test, or because a javascript error occurred.
673+
- `incomplete`: Also known as "needs review," these results were aborted and require further testing. This can happen either because of technical restrictions to what the rule can test, or because a JavaScript error occurred.
674674

675675
Each object returned in these arrays have the following properties:
676676

@@ -834,7 +834,7 @@ axe.teardown();
834834

835835
### API Name: axe.frameMessenger
836836

837-
Set up a alternative communication channel between parent and child frames. By default, axe-core uses `window.postMessage()`. See [frame-messenger.md](frame-messenger.md) for details.
837+
Set up an alternative communication channel between parent and child frames. By default, axe-core uses `window.postMessage()`. See [frame-messenger.md](frame-messenger.md) for details.
838838

839839
### API name: axe.runPartial / axe.finishRun
840840

@@ -931,7 +931,7 @@ The top-level document or shadow DOM document fragment
931931

932932
This package contains examples for [jasmine](examples/jasmine), [mocha](examples/mocha), [qunit](examples/qunit), and [generating HTML from the violations array](examples/html-handlebars.md). Each of these examples is in the [doc/examples](examples) folder. In each folder, there is a README.md file which contains specific information about each example.
933933

934-
See [axe-webdriverjs](https://github.com/dequelabs/axe-webdriverjs#axe-webdriverjs) for selenium webdriver javascript examples.
934+
See [axe-webdriverjs](https://github.com/dequelabs/axe-webdriverjs#axe-webdriverjs) for selenium webdriver JavaScript examples.
935935

936936
## Section 4: Performance
937937

doc/accessibility-supported.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In order to adhere to the manifesto and at the same time be useful to developers
66

77
Accessibility supported means that in order for a technique to pass, it must work in some predefined set of browsers and assistive technologies. For axe-core this means that for a screen reader, browser, or environment to be added to the list of supported combinations, the following two criteria must be met:
88

9-
1. Be used by more than 1% of users (currently extrapolated from the [WebAims Screen Reader User Survey](https://webaim.org/projects/screenreadersurvey10/#browsercombos))
9+
1. Be used by more than 1% of users (currently extrapolated from the [WebAim Screen Reader User Survey](https://webaim.org/projects/screenreadersurvey10/#browsercombos))
1010
1. Introduce new coverage for a screen reader, browser, or environment not currently accessibility supported
1111

1212
We currently test the following AT combinations for support
@@ -32,6 +32,6 @@ In addition, we disallow invalid attributes starting with `aria-` and invalid at
3232

3333
## Best practices
3434

35-
We recognize that there are best practices that significantly improve the usability of application, even though they are not strictly required in order to conform with WCAG 2. We develop the best practice rules to help content developers to identify these and adhere to them.
35+
We recognize that there are best practices that significantly improve the usability of an application, even though they are not strictly required in order to conform with WCAG 2. We develop the best practice rules to help content developers to identify these and adhere to them.
3636

3737
We recognize that this topic is somewhat controversial and the rules we have represent Deque's opinion on what constitutes a best practice.

doc/act-rules-format.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# W3C Standardized Rules
22

3-
Deque Systems is one of leading organizations in the development of standardized accessibility conformance testing rules. The [axe-core rules proposal format](./rule-proposal.md) is an adaptation of the [Accessibility Conformance Testing Rules Format](https://www.w3.org/TR/act-rules-format/).
3+
Deque Systems is one of the leading organizations in the development of standardized accessibility conformance testing rules. The [axe-core rules proposal format](./rule-proposal.md) is an adaptation of the [Accessibility Conformance Testing Rules Format](https://www.w3.org/TR/act-rules-format/).
44

55
There are two ways a rule written in the axe-core rule format can be transformed into the ACT Rules format:
66

@@ -9,17 +9,17 @@ There are two ways a rule written in the axe-core rule format can be transformed
99
This method is useful for rules with a small number of checks.
1010

1111
1. Add the test input type to it: `rendered page`
12-
2. Add an `assumptions` section, add possible assumptions to it
12+
2. Add an `assumptions` section, including possible assumptions to it
1313
3. Add an `outcomes` section, describing the different possible outcomes of the rule
14-
4. Add a `Validation Tests` section, that links to the integration tests
14+
4. Add a `Validation Tests` section that links to the integration tests
1515
5. Update the check to return pass/fail/cantTell instead of true/false/undefined
1616
6. Add control flow to the checks:
1717

1818
- `any` checks should only return `fail` in the last step. All steps leading up to it either return `pass` or say `continue to the next step`.
1919
- `all` and `none` checks should only return `pass` in the last step. All steps leading up to it either return `fail` or say `continue to the next step`.
2020

2121
7. Rename `checks` to `steps` and add a `step X` (where X is the step number) to the heading with the check name.
22-
8. Replace the `tags` section with a `Accessibility Requirements`. The requirements can be determined based on the `wcag###` tags.
22+
8. Replace the `tags` section with an `Accessibility Requirements`. The requirements can be determined based on the `wcag###` tags.
2323

2424
## Method 2: Create a rule group
2525

@@ -34,4 +34,4 @@ This method is useful for larger rules with `any` checks. This effectively turns
3434
7. Update the check to return pass/fail/cantTell instead of true/false/undefined
3535
8. Add a `Validation Tests` section, that links to only those integration tests relevant for this check (now a new rule).
3636
9. Indicate that the new rule is part of a group, using the original axe-core rule ID as the group name.
37-
10. Replace the `tags` section with a `Accessibility Requirements`. The requirements can be determined based on the `wcag###` tags.
37+
10. Replace the `tags` section with an `Accessibility Requirements`. The requirements can be determined based on the `wcag###` tags.

doc/backwards-compatibility-doc.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The axe-core API includes:
88
- The selectors generated and included in the node information in the results arrays for any given HTML page
99
- The JSON structures passed into and out of any API functions
1010
- Any functions in the `axe.utils` and `axe.commons` collections that are used by one of our standard rules (this document refers to these as the “Public Utils”). This includes use in any of the “matches”, “eval” and “after” functions.
11-
- The implicit function signature of the matches, eval and after functions (the names of the parameters that are passed-to the functions and the values returned by them)
11+
- The implicit function signature of the matches, eval and after functions (the names of the parameters that are passed to the functions and the values returned by them)
1212

1313
## What is not included in the public axe-core API?
1414

@@ -20,7 +20,7 @@ We guarantee that the API signatures and the return values of functions will not
2020

2121
In a minor release, we may change the implementation of Public Utils to fix bugs or improve performance. This means that a call to a Public Util may return a different value across patch versions.
2222

23-
We will not add or remove rules in a patch release. We will not add support for new technologies in a patch release. We will endeavour to return the exact same results across patch releases with the exception of changes that are due to bug fixes. This means that the likelihood of a patch release finding issues on a page that was clean in a previous release is very close to zero but not zero.
23+
We will not add or remove rules in a patch release. We will not add support for new technologies in a patch release. We will endeavor to return the exact same results across patch releases with the exception of changes that are due to bug fixes. This means that the likelihood of a patch release finding issues on a page that was clean in a previous release is very close to zero but not zero.
2424

2525
In a minor release, we may add support for new technologies in the Public Utils or in existing rules and we may add or disable rules. We may also change an experimental rule to become a standard rule (essentially equivalent to adding rule). This means that pages that did not return violations in a particular minor release may return violations in a subsequent release. Rule tags, including the "wcag\*" tags, and whether or not something is reported as best-practice can be changed in minor releases.
2626

@@ -44,7 +44,7 @@ Major releases may remove rules.
4444
| APIs removed | May be removed (will remove previously deprecated APIs) | Will not be removed | Will not be removed |
4545
| **Public Utils** | | | |
4646
| Implementation of Public Utils | May change | May change | Will not change |
47-
| New public Utils | May add | May add | Will not add |
47+
| New Public Utils | May add | May add | Will not add |
4848
| **Rules** | | | |
4949
| Add rules | May add | May add | Will not add |
5050
| Disable or remove rules | May remove (will remove previously deprecated rules) | May disable or remove | Will not disable or remove |
@@ -61,7 +61,7 @@ Patch release upgrades can be applied in CI environments with a high degree of c
6161

6262
### Custom Rules
6363

64-
A custom rule configuration (with-or-without custom rules) is guaranteed to run on any newer version that shares the same major version number as the version for which it was created. A custom rule configuration (with-or-without custom rules) is not guaranteed to work with an older version of axe-core than the version for which it was created.
64+
A custom rule configuration (with or without custom rules) is guaranteed to run on any newer version that shares the same major version number as the version for which it was created. A custom rule configuration (with or without custom rules) is not guaranteed to work with an older version of axe-core than the version for which it was created.
6565

6666
You can write custom rules that utilize the Public Utils and the parameters that are passed to a check function, secure in the knowledge that the API will not change unless a major version is released.
6767

0 commit comments

Comments
 (0)