Skip to content
Snippets Groups Projects
Commit a20935ea authored by Lemmer, Jan's avatar Lemmer, Jan
Browse files

Correct Typos

parent 3ffb060d
Branches
Tags
2 merge requests!43Implements #73, cleans up example file,,!33Resolve "Admin-Berechtigung für Initialisation"
Pipeline #591959 failed
......@@ -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!');
......
%% 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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment