Skip to content

Commit c3888d0

Browse files
docs: normalize British English to American English in spec files (#31291)
1 parent 8b2728e commit c3888d0

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/src/content/docs/reference/effective-tokens-specification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ This file is embedded at compile time into the `gh-aw` binary using a Go `//go:e
490490

491491
**R-REG-004**: Implementations MUST embed or bundle the registry at build time. Runtime fetching of multiplier values from an external source requires disclosure in reported output.
492492

493-
**R-REG-005**: When a model name is not present in the registry, implementations MUST treat the multiplier as `1.0` and SHOULD emit a warning noting that the model is unrecognised.
493+
**R-REG-005**: When a model name is not present in the registry, implementations MUST treat the multiplier as `1.0` and SHOULD emit a warning noting that the model is unrecognized.
494494

495495
**R-REG-006**: Custom multipliers supplied by the caller (e.g., via API or configuration) MUST be merged with registry multipliers. Custom values take precedence and MUST be disclosed in any report that uses them.
496496

docs/src/content/docs/reference/experiments-specification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -997,7 +997,7 @@ experiments:
997997
```
998998

999999
The weight values are **relative proportions**, not absolute percentages. The implementation
1000-
normalises them to compute probabilities:
1000+
normalizes them to compute probabilities:
10011001

10021002
```
10031003
total_weight = 20 + 50 + 30 = 100

docs/src/content/docs/reference/fuzzy-schedule-specification.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,13 +344,13 @@ every 2 days
344344
### 3.7 Error Norms for Invalid Schedule Expressions
345345

346346
The following table specifies normative behavior (MUST/SHALL requirements) for malformed or
347-
unrecognisable fuzzy schedule expressions encountered during compilation. These norms apply
347+
unrecognizable fuzzy schedule expressions encountered during compilation. These norms apply
348348
at parse time (when the compiler processes the workflow frontmatter) and at test time (when
349349
the compliance test suite exercises the parser with invalid inputs).
350350

351351
| # | Error Condition | Input Example | MUST/SHALL Behavior | Error Code |
352352
|---|----------------|---------------|---------------------|------------|
353-
| E-01 | Unknown schedule keyword (not one of `daily`, `weekly`, `hourly`, `bi-weekly`, `tri-weekly`, `every`) | `monthly` | Implementation MUST reject with a descriptive error naming the unrecognised keyword and listing valid keywords | `UNKNOWN_KEYWORD` |
353+
| E-01 | Unknown schedule keyword (not one of `daily`, `weekly`, `hourly`, `bi-weekly`, `tri-weekly`, `every`) | `monthly` | Implementation MUST reject with a descriptive error naming the unrecognized keyword and listing valid keywords | `UNKNOWN_KEYWORD` |
354354
| E-02 | Out-of-range hour in 24-hour format | `daily around 25:00` | Implementation MUST reject; the error message MUST state the valid hour range (0–23) and the offending value | `HOUR_OUT_OF_RANGE` |
355355
| E-03 | Out-of-range minute | `daily around 14:65` | Implementation MUST reject; the error message MUST state the valid minute range (0–59) and the offending value | `MINUTE_OUT_OF_RANGE` |
356356
| E-04 | `around` keyword with no time specification | `daily around` | Implementation MUST reject; the error message MUST include an example of correct `around` usage | `MISSING_TIME_SPEC` |

0 commit comments

Comments
 (0)