Skip to content

Commit afcdd88

Browse files
authored
Merge pull request #27 from tomayac/main
Fix `corrected` to `correctedInput` in body text.
2 parents 4c1c38b + c5546f5 commit afcdd88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,12 +185,12 @@ For each input, the method `proofread()` returns a promise of `ProofreadResult`:
185185

186186
```idl
187187
dictionary ProofreadResult {
188-
DOMString corrected;
188+
DOMString correctedInput;
189189
sequence<ProofreadCorrection> corrections;
190190
}
191191
```
192192

193-
`corrected` is the fully corrected version of the input, while `corrections` contains a list of corrections made, their locations in the original input (e.g. so web developers can create UI to highlight the error), and optionally labels/explanations.
193+
`correctedInput` is the fully corrected version of the input, while `corrections` contains a list of corrections made, their locations in the original input (e.g. so web developers can create UI to highlight the error), and optionally labels/explanations.
194194

195195
```idl
196196
dictionary ProofreadCorrection {

0 commit comments

Comments
 (0)