diff --git a/README.md b/README.md
index 2e705d1e7e957510dc75b2d1fa5566c9a7a9e5b6..94c0d0265960a8cada7c8d9433ba86882ea1cb1a 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ Since Notebooks are just JSON, I wrote a small parser in Python which suits my n
 It works by providing *tags* of cells to `keep` and *tags* of cells to `remove`. For instance,
 
 ```bash
-notbook-splitter $< --keep task --keep solution --remove nopresentation
+notebook-splitter $< --keep task --keep solution --remove nopresentation
 ```
 
 would look into Notebook cells and keep those which are *tagged* `task` or `solution` and remove those which are tagged `nopresentation`. One special tag for removal exists, `all`, which removes everything except what's marked to keep. A tag in the sense used here is a value to a JSON key in the cell's metadata, which is per default `"exercise"` (but can be selected via `--basekey`. Example: