From 37fe847af4c1991110ce16b3e0a0c3010e6743bc Mon Sep 17 00:00:00 2001 From: Paul O'Leary McCann Date: Fri, 20 Aug 2021 15:34:22 +0900 Subject: [PATCH] Fix type annotation in docs --- website/docs/api/doc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/api/doc.md b/website/docs/api/doc.md index 9358507dc..0b5ef56c0 100644 --- a/website/docs/api/doc.md +++ b/website/docs/api/doc.md @@ -212,7 +212,7 @@ alignment mode `"strict". | Name | Description | | ------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `start` | The index of the first character of the span. ~~int~~ | -| `end` | The index of the last character after the span. ~int~~ | +| `end` | The index of the last character after the span. ~~int~~ | | `label` | A label to attach to the span, e.g. for named entities. ~~Union[int, str]~~ | | `kb_id` 2.2 | An ID from a knowledge base to capture the meaning of a named entity. ~~Union[int, str]~~ | | `vector` | A meaning representation of the span. ~~numpy.ndarray[ndim=1, dtype=float32]~~ |