diff --git a/spacy/errors.py b/spacy/errors.py
index 498df0320..d143e341c 100644
--- a/spacy/errors.py
+++ b/spacy/errors.py
@@ -965,8 +965,8 @@ class Errors(metaclass=ErrorsWithCodes):
E1047 = ("`find_threshold()` only supports components with a `scorer` attribute.")
E1048 = ("Got '{unexpected}' as console progress bar type, but expected one of the following: {expected}")
E1049 = ("No available port found for displaCy on host {host}. Please specify an available port "
- "with `displacy.serve(doc, port)`")
- E1050 = ("Port {port} is already in use. Please specify an available port with `displacy.serve(doc, port)` "
+ "with `displacy.serve(doc, port=port)`")
+ E1050 = ("Port {port} is already in use. Please specify an available port with `displacy.serve(doc, port=port)` "
"or use `auto_switch_port=True` to pick an available port automatically.")
diff --git a/website/docs/api/top-level.mdx b/website/docs/api/top-level.mdx
index a222cfa8f..9748719d7 100644
--- a/website/docs/api/top-level.mdx
+++ b/website/docs/api/top-level.mdx
@@ -236,17 +236,17 @@ browser. Will run a simple web server.
> displacy.serve([doc1, doc2], style="dep")
> ```
-| Name | Description |
-| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `docs` | Document(s) or span(s) to visualize. ~~Union[Iterable[Union[Doc, Span]], Doc, Span]~~ |
-| `style` | Visualization style, `"dep"`, `"ent"` or `"span"` 3.3. Defaults to `"dep"`. ~~str~~ |
-| `page` | Render markup as full HTML page. Defaults to `True`. ~~bool~~ |
-| `minify` | Minify HTML markup. Defaults to `False`. ~~bool~~ |
-| `options` | [Visualizer-specific options](#displacy_options), e.g. colors. ~~Dict[str, Any]~~ |
-| `manual` | Don't parse `Doc` and instead expect a dict or list of dicts. [See here](/usage/visualizers#manual-usage) for formats and examples. Defaults to `False`. ~~bool~~ |
-| `port` | Port to serve visualization. Defaults to `5000`. ~~int~~ |
-| `host` | Host to serve visualization. Defaults to `"0.0.0.0"`. ~~str~~ |
-| `auto_select_port` | If `True`, automatically switch to a different port if the specified port is already in use. Defaults to `False`. ~~bool~~ |
+| Name | Description |
+| ----------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `docs` | Document(s) or span(s) to visualize. ~~Union[Iterable[Union[Doc, Span]], Doc, Span]~~ |
+| `style` 3.3 | Visualization style, `"dep"`, `"ent"` or `"span"`. Defaults to `"dep"`. ~~str~~ |
+| `page` | Render markup as full HTML page. Defaults to `True`. ~~bool~~ |
+| `minify` | Minify HTML markup. Defaults to `False`. ~~bool~~ |
+| `options` | [Visualizer-specific options](#displacy_options), e.g. colors. ~~Dict[str, Any]~~ |
+| `manual` | Don't parse `Doc` and instead expect a dict or list of dicts. [See here](/usage/visualizers#manual-usage) for formats and examples. Defaults to `False`. ~~bool~~ |
+| `port` | Port to serve visualization. Defaults to `5000`. ~~int~~ |
+| `host` | Host to serve visualization. Defaults to `"0.0.0.0"`. ~~str~~ |
+| `auto_select_port` 3.5 | If `True`, automatically switch to a different port if the specified port is already in use. Defaults to `False`. ~~bool~~ |
### displacy.render {id="displacy.render",tag="method",version="2"}