Skip to content

Commit b2cd01a

Browse files
authored
Merge pull request #50 from theiiienrique/typos
Fix typos, consistent formatting
2 parents 105a071 + 7ffc7cb commit b2cd01a

File tree

16 files changed

+22
-22
lines changed

16 files changed

+22
-22
lines changed

docs/contribute/repos/doc-detective.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ sidebar_position: 1
77
The most common entrypoint for most users, [`doc-detective`](https://github.com/doc-detective/doc-detective) is an NPM-based CLI tool that performs tests. It's installable via NPM (`npm i -g doc-detective`) and directly runnable without installation via NPX (`npx doc-detective`).
88

99
This repo depends on
10-
- [`doc-detective-core`](doc-detective-core) for the primarly testing logic.
10+
- [`doc-detective-core`](doc-detective-core) for the primary testing logic.
1111
- [`doc-detective-common`](doc-detective-common) for JSON schema definitions, schema validation logic, and path resolution logic.

docs/contribute/repos/docker-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ sidebar_position: 6
66

77
> This repo is in alpha. It's not ready for production use.
88
9-
[`docker-image`](https://github.com/doc-detective/docker-image) runs Doc Detective in a container. While Doc Detective can run on most machines as-is, this Docker image simplifies installation and running Doc Detective on machines without Node.js or with hightened security requirements.
9+
[`docker-image`](https://github.com/doc-detective/docker-image) runs Doc Detective in a container. While Doc Detective can run on most machines as-is, this Docker image simplifies installation and running Doc Detective on machines without Node.js or with heightened security requirements.
1010

1111
This repo depends on [`doc-detective`](doc-detective) for performing the tests.

docs/get-started/actions/checkLink.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You can also specify
1515
- an `origin` to navigate to a URL relative to a specific path.
1616
- `statusCodes` to set acceptable HTTP status codes.
1717

18-
> For comprehensive options, see the [checkLink](/docs/references/schemas/checkLink) reference.
18+
> For comprehensive options, see the [`checkLink`](/docs/references/schemas/checkLink) reference.
1919
2020
## Examples
2121

docs/get-started/actions/find.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ grand_parent: Tests
88

99
# find
1010

11-
The `find` action locations an element in the current interface and interacts with it, such as validating its text content, clicking it, or typing into it.
11+
The `find` action locates an element in the current interface and interacts with it, such as validating its text content, clicking it, or typing into it.
1212

1313
> For comprehensive options, see the [`find`](/docs/references/schemas/find) reference.

docs/get-started/actions/saveScreenshot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ parent: Actions
66
grand_parent: Tests
77
---
88

9-
# find
9+
# saveScreenshot
1010

1111
The `saveScreenshot` action captures a PNG of the current viewport. If an image with the same name and dimensions exists, it can also perform pixel diffs and capture updated screenshots for debugging or media updating purposes.
1212

docs/get-started/actions/setVariables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ grand_parent: Tests
1010

1111
The `setVariables` action sets environment variables from a `.env` file. This action is useful for accessing sensitive information, such as API keys or other credentials, without hardcoding them into your tests.
1212

13-
For comprehensive options, see the [setVariables](/docs/references/schemas/setVariables) reference.
13+
> For comprehensive options, see the [`setVariables`](/docs/references/schemas/setVariables) reference.
1414
1515
## Example
1616

docs/get-started/actions/startRecording.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ parent: Actions
66
grand_parent: Tests
77
---
88

9-
# find
9+
# startRecording
1010

1111
The `startRecording` action records tests as they are run for debugging or multimedia purposes.
1212

docs/get-started/actions/stopRecording.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ parent: Actions
66
grand_parent: Tests
77
---
88

9-
# find
9+
# stopRecording
1010

1111
The `stopRecording` action stops a recording started by a [`startRecording`](startRecording) action.
1212

docs/get-started/actions/typeKeys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The `typeKeys` action registers key presses, including special keys such as Ente
1212

1313
You can specify `keys` either as a string or as an array of strings. Each character in a string or array is separated is treated as a separate key press, but specifying an array allows you to include both regular and [special](#special-keys) keys.
1414

15-
For comprehensive options, see the [typeKeys](/docs/references/schemas/typeKeys) reference.
15+
> For comprehensive options, see the [`typeKeys`](/docs/references/schemas/typeKeys) reference.
1616
1717
## Special keys
1818

docs/get-started/actions/wait.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The `wait` action pauses before performing the next step. This action is useful
1212

1313
You can specify the `duration` to pause in milliseconds. The default `duration` is 5 seconds.
1414

15-
For comprehensive options, see the [wait](/docs/references/schemas/wait) reference.
15+
> For comprehensive options, see the [`wait`](/docs/references/schemas/wait) reference.
1616
1717
## Examples
1818

0 commit comments

Comments
 (0)