Skip to content

Commit 2d289c3

Browse files
Copilothawkeyexl
andcommitted
Fix Vale false positive with markup and restore alex.Condescending to error
Co-authored-by: hawkeyexl <[email protected]>
1 parent 22c1aa2 commit 2d289c3

File tree

20 files changed

+34
-35
lines changed

20 files changed

+34
-35
lines changed

.vale.ini

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,3 @@ Google.Quotes = warning
2222
# Vale.Spelling doesn't respect vocabulary in frontmatter/titles
2323
# Relax to warning for technical docs with API terms
2424
Vale.Spelling = warning
25-
26-
# alex.Condescending flags words like "simple" and "easy" which in technical
27-
# documentation often describe the example's complexity, not the reader's ability
28-
# Relax to warning so reviewers can use judgment
29-
alex.Condescending = warning

docs/contributing/quick-start.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ For quick fixes like typos and link updates, no testing is required. The automat
8080

8181
### What if the automated checks fail?
8282

83-
Don't worry. The reviewer will help you fix any issues. Most common failures are easily correctable:
83+
Don't worry. The reviewer will help you fix any issues. Most common failures are correctable:
8484
- __Vale failures__: Usually suggest alternative wording (often just suggestions)
8585
- __Link check failures__: Means a link is broken or inaccessible
8686
- __Build failures__: Usually means there's a syntax error in Markdown

docs/contributing/review-process.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ In your pull request, you'll see status checks:
5050

5151
### If checks fail
5252

53-
Don't panic. Failed checks are common and usually easy to fix.
53+
Don't panic. Failed checks are common and can usually be fixed.
5454

5555
#### Vale failures
5656

docs/contributing/templates/feature.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ Examples should be copy-pasteable and work as-is:
219219
}
220220
```
221221

222-
### Document breaking changes clearly
222+
### Document breaking changes
223223

224224
Be explicit about what breaks:
225225

@@ -373,7 +373,7 @@ None. This is a backward-compatible addition. Existing screenshots continue to w
373373

374374
## Checklist before submitting
375375

376-
- [ ] Clearly explains what the feature is and why it matters
376+
- [ ] Explains what the feature is and why it matters
377377
- [ ] Provides complete, working examples
378378
- [ ] Documents all configuration options
379379
- [ ] Includes migration guide if replacing existing functionality

docs/contributing/templates/troubleshooting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ If you've tried these solutions and still have issues:
368368
369369
## Checklist before submitting
370370
371-
- [ ] Problem is clearly stated in the title
371+
- [ ] Problem is stated in the title
372372
- [ ] Symptoms are specific and observable
373373
- [ ] Exact error messages are included
374374
- [ ] Root cause is explained

docs/contributing/templates/tutorial.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,14 +148,14 @@ Each step should build on previous ones:
148148

149149
✅ Good progression:
150150

151-
1. Create a simple test with one action
151+
1. Create a basic test with one action
152152
2. Add a second action to create a flow
153153
3. Add error handling
154154
4. Organize into a test suite
155155

156156
⛔ Poor progression:
157157

158-
1. Create a simple test
158+
1. Create a basic test
159159
2. Deploy to production (too big a jump)
160160

161161
### Explain the why
@@ -431,7 +431,7 @@ Now that you understand the basics:
431431
432432
## Checklist before submitting
433433
434-
- [ ] Clearly states what users will learn
434+
- [ ] States what users will learn
435435
- [ ] Lists what users will build
436436
- [ ] Prerequisites and time estimate included
437437
- [ ] Steps build progressively

docs/contributing/testing.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ npx doc-detective runTests --input your-test.spec.json --logLevel debug
407407

408408
## Test best practices
409409

410-
### Keep tests simple
410+
### Keep tests straightforward
411411

412412
**Do:**
413413
- Test one concept per test
@@ -424,7 +424,7 @@ npx doc-detective runTests --input your-test.spec.json --logLevel debug
424424
### Make tests maintainable
425425

426426
**Do:**
427-
- Use comments to explain non-obvious steps
427+
- Use comments to explain complex steps
428428
- Group related tests in the same file
429429
- Use descriptive action parameters
430430
- Clean up after tests (delete files, etc.)

docs/get-started/actions/find.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The `find` action locates an element in the current interface based on its displ
1616

1717
If multiple elements match the specified criteria (`elementText` and/or `selector`), the step operates on the first matched element. Ensure your criteria uniquely identify the target element.
1818

19-
You can specify the target element directly using a string (for simple text or selector lookup) or use an object for more detailed options and interactions:
19+
You can specify the target element directly using a string (for basic text or selector lookup) or use an object for more detailed options and interactions:
2020

2121
- **String Shorthand:** Provide the display text or CSS/XPath selector directly as the value for the `find` key. If elements are found by both text and selector, the element found by matching text is used.
2222
- Example: `"find": "Login"` or `"find": "#username"`.

docs/get-started/actions/httpRequest.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ import JSONSchemaViewer from "@theme/JSONSchemaViewer";
1414

1515
The `httpRequest` action makes arbitrary HTTP calls, allowing you to interact with and validate APIs or other web services directly within your tests.
1616

17-
You can specify a simple GET request using a string shorthand or use an object for more complex requests and validation:
17+
You can specify a basic GET request using a string shorthand or use an object for more complex requests and validation:
1818

19-
- **String Shorthand:** Provide the full URL directly as the value for the `httpRequest` key. This performs a simple GET request to that URL.
19+
- **String Shorthand:** Provide the full URL directly as the value for the `httpRequest` key. This performs a basic GET request to that URL.
2020
- **Object Format:** Use an object with the following properties:
2121
- `url`: (Required unless using `openApi`) The target URL for the request.
2222
- `method`: (Optional) The HTTP method (for example, `GET`, `POST`, `PUT`, `DELETE`). Defaults to `GET`.
@@ -46,15 +46,15 @@ You can specify a simple GET request using a string shorthand or use an object f
4646

4747
Here are a few ways you might use the `httpRequest` action:
4848

49-
### Simple GET request (string shorthand)
49+
### Basic GET request (string shorthand)
5050

5151
```json
5252
{
5353
"tests": [
5454
{
5555
"steps": [
5656
{
57-
"description": "Perform a simple GET request.",
57+
"description": "Perform a basic GET request.",
5858
"httpRequest": "https://reqres.in/api/users?page=2"
5959
}
6060
]

docs/get-started/actions/record.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ You can specify the recording action in several ways:
3333

3434
Here are a few ways you might use the `record` and `stopRecord` actions:
3535

36-
### Simple recording (boolean shorthand)
36+
### Basic recording (boolean shorthand)
3737

3838
Starts recording to a default path like `output/record_1745032062266.mp4` and stops later.
3939

0 commit comments

Comments
 (0)