Skip to content

Commit c5546f5

Browse files
authored
Fix corrected to correctedInput in body text.
1 parent cba9926 commit c5546f5

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
@@ -187,12 +187,12 @@ For each input, the method `proofread()` returns a promise of `ProofreadResult`:
187187
188188
```js
189189
dictionary ProofreadResult {
190-
DOMString corrected;
190+
DOMString correctedInput;
191191
sequence<ProofreadCorrection> corrections;
192192
}
193193
```
194194
195-
`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.
195+
`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.
196196
197197
```js
198198
dictionary ProofreadCorrection {

0 commit comments

Comments
 (0)