diff --git a/{{cookiecutter.project_slug}}/CONTRIBUTING.rst b/{{cookiecutter.project_slug}}/CONTRIBUTING.rst
index 1d7c9e1db7c752ec8f5221f2cbf7a50d50dad146..95fe7f67d44f9318e8f73d1719c8361456c5c1a3 100644
--- a/{{cookiecutter.project_slug}}/CONTRIBUTING.rst
+++ b/{{cookiecutter.project_slug}}/CONTRIBUTING.rst
@@ -52,9 +52,9 @@ Get a local copy to work on (use the SSH address `git@git...`, not the HTTP one)
     git clone git@git.km3net.de:YOUR_USERNAME/{{cookiecutter.project_slug}}
 
 Now you need to add a reference to the original repository, so you can sync your
-own fork with the KM3Pipe repository::
+own fork with the original repository::
 
-    cd km3pipe
+    cd {{cookiecutter.project_slug}}
     git remote add upstream {{cookiecutter.gitlab_repo_path}}
 
 
@@ -76,7 +76,7 @@ using the ``upstream/...`` prefix::
 
 
 If you want to update for example your **own** ``master`` branch
-to contain all the changes on the official ``master`` branch of KM3Pipe,
+to contain all the changes on the official ``master`` branch of the original repository,
 switch to it first with::
 
     git checkout master
diff --git a/{{cookiecutter.project_slug}}/Makefile b/{{cookiecutter.project_slug}}/Makefile
index a31d9763d7e59de5b04373f804b17df5f913c390..3b920bf23be14ac7e2578fadecbec24bd02323b3 100644
--- a/{{cookiecutter.project_slug}}/Makefile
+++ b/{{cookiecutter.project_slug}}/Makefile
@@ -35,7 +35,6 @@ dependencies:
 
 .PHONY: black
 black:
-	black km3io
 	black examples
 	black tests
 	black doc/conf.py
@@ -43,7 +42,6 @@ black:
 
 .PHONY: black-check
 black-check:
-	black --check km3io
 	black --check examples
 	black --check tests
 	black --check doc/conf.py