diff --git a/spacy/lang/en/tokenizer_exceptions.py b/spacy/lang/en/tokenizer_exceptions.py
index 9731dc752..6358b549b 100644
--- a/spacy/lang/en/tokenizer_exceptions.py
+++ b/spacy/lang/en/tokenizer_exceptions.py
@@ -532,6 +532,7 @@ for orth in [
"Ms.",
"p.m.",
"Ph.D.",
+ "Prof.",
"Rep.",
"Rev.",
"Sen.",
diff --git a/website/docs/api/cli.md b/website/docs/api/cli.md
index 7af134e40..62752beb4 100644
--- a/website/docs/api/cli.md
+++ b/website/docs/api/cli.md
@@ -86,11 +86,11 @@ generate [Markdown](https://en.wikipedia.org/wiki/Markdown)-formatted markup to
copy-paste into [GitHub issues](https://github.com/explosion/spaCy/issues).
```bash
-$ python -m spacy info [--markdown]
+$ python -m spacy info [--markdown] [--silent]
```
```bash
-$ python -m spacy info [model] [--markdown]
+$ python -m spacy info [model] [--markdown] [--silent]
```
| Argument | Type | Description |
@@ -422,6 +422,7 @@ pip install dist/en_model-0.0.0.tar.gz
| `input_dir` | positional | Path to directory containing model data. |
| `output_dir` | positional | Directory to create package folder in. |
| `--meta-path`, `-m` 2 | option | Path to `meta.json` file (optional). |
-| `--create-meta`, `-c` 2 | flag | Create a `meta.json` file on the command line, even if one already exists in the directory. If an existing file is found, its entries will be shown as the defaults in the command line prompt. | `--force`, `-f` | flag | Force overwriting of existing folder in output directory. |
+| `--create-meta`, `-c` 2 | flag | Create a `meta.json` file on the command line, even if one already exists in the directory. If an existing file is found, its entries will be shown as the defaults in the command line prompt.
+| `--force`, `-f` | flag | Force overwriting of existing folder in output directory. |
| `--help`, `-h` | flag | Show help message and available arguments. |
| **CREATES** | directory | A Python package containing the spaCy model. |