diff --git a/+PlotID/@config/wizard.m b/+PlotID/@config/wizard.m
index 3163eb5f5864a65d1e03cc03f3751aa1100665bd..47f3d8a9c080329db7db66f0467b105eebd43894 100644
--- a/+PlotID/@config/wizard.m
+++ b/+PlotID/@config/wizard.m
@@ -27,7 +27,7 @@ function usrTxt = inputRequired(msg)
 %Input Dialog that repeats if left empty
 inputRequired = true;
 while inputRequired
-    prompt = ['Please enter ', msg , ':'];
+    prompt = ['Please enter ', msg , ': '];
     inpt = input(prompt,'s');
     if isempty(inpt)
         disp('Input must not be empty!');
diff --git a/Initialisation.m b/Initialisation.m
index f29527c0eed433475e22e50456f4f3a73d81dadb..a30816b8aa0e8d8405695d7de19ba46713650cf2 100644
--- a/Initialisation.m
+++ b/Initialisation.m
@@ -1,17 +1,7 @@
 %% This is the PlotID Initialisation file
 % Please run this script before using PlotID
 
-%% Step 1: Add plotID location to you MATLAB path via startup.m
-% Change the current folder to the folder of this m-file.
-%% ToDO: Delete and add to readme 
-% plotIDpath = fileparts(which(mfilename));
-% % Add PlotID path to your startup.m file
-% fid = fopen(fullfile(userpath,'startup.m'),'a+');
-% cmdStr = ['addpath(''', plotIDpath,''');'];
-% fprintf(fid,'%s\n', cmdStr);
-% fclose(fid);
-
-%% Section 2 Config File
+%% Section 1 Config File
 % To make things easy, you should use the config file. The following wizard
 % will help you create one:
 writeConfig = true;