From a20935ea160b1f1dc6161aeb7a26f30d1d45c454 Mon Sep 17 00:00:00 2001 From: Jan Lemmer <jan.lemmer@fst.tu-darmstadt.de> Date: Tue, 23 Nov 2021 10:35:33 +0100 Subject: [PATCH] Correct Typos --- +PlotID/@config/wizard.m | 2 +- Initialisation.m | 12 +----------- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/+PlotID/@config/wizard.m b/+PlotID/@config/wizard.m index 3163eb5..47f3d8a 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 f29527c..a30816b 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; -- GitLab