diff --git a/README.md b/README.md
index 683590e9..198c319b 100644
--- a/README.md
+++ b/README.md
@@ -67,7 +67,7 @@ By default this will look for content packages inside the `./data/input` directo
If you want to use different input and/or output paths you can use options:
```
-mo convert:to:learnosity -i /my/path/to/qti -o /my/path/to/output/folder --organisation_id [integer]
+mo convert:to:learnosity --input /my/path/to/qti --output /my/path/to/output/folder --organisation_id [integer]
```
Remember you can ask for `help`:
diff --git a/src/Commands/ConvertToLearnosityCommand.php b/src/Commands/ConvertToLearnosityCommand.php
index 8e0deb6e..bae7be42 100644
--- a/src/Commands/ConvertToLearnosityCommand.php
+++ b/src/Commands/ConvertToLearnosityCommand.php
@@ -84,7 +84,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
}
$output->writeln([
- " mo convert:to:learnosity -i /path/to/qti -o /path/to/save/folder -org [integer]"
+ " mo convert:to:learnosity --input /path/to/qti --output /path/to/save/folder --organisation_id [integer]"
]);
} else {
$Convert = new ConvertToLearnosityService($inputPath, $outputPath, $output, $organisationId);