From c5546f5cb17e9a4eb5d4a04e0dde06e430885567 Mon Sep 17 00:00:00 2001 From: Thomas Steiner Date: Thu, 6 Nov 2025 07:21:16 -0600 Subject: [PATCH] Fix `corrected` to `correctedInput` in body text. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index feeb5d3..ba57aec 100644 --- a/README.md +++ b/README.md @@ -187,12 +187,12 @@ For each input, the method `proofread()` returns a promise of `ProofreadResult`: ```js dictionary ProofreadResult { - DOMString corrected; + DOMString correctedInput; sequence corrections; } ``` -`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. +`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. ```js dictionary ProofreadCorrection {