Skip to content

Commit

Permalink
feat(typo): fix title in imosTiltVelocitySetQC
Browse files Browse the repository at this point in the history
  • Loading branch information
ocehugo committed Aug 12, 2020
1 parent 8f2c0c8 commit 8248f35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AutomaticQC/imosTiltVelocitySetQC.m
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@

if isempty(firstTiltThreshold) && auto
% couldn't find this instrument so quit the test
disp(['Warning: imosTiltVelositySetQC could not be performed on ' sample_data.toolbox_input_file ...
' instrument = "' instrument '" => Fill imosTiltVelositySetQC.txt with relevant make/model information if you wish to run this test on this dataset.']);
disp(['Warning: imosTiltVelocitySetQC could not be performed on ' sample_data.toolbox_input_file ...
' instrument = "' instrument '" => Fill imosTiltVelocitySetQC.txt with relevant make/model information if you wish to run this test on this dataset.']);
return;
end

Expand All @@ -188,7 +188,7 @@
names = {'firstTiltThreshold [deg]', 'firstFlagThreshold [imosQCFlag]', 'secondTiltThreshold [deg]', 'secondFlagThreshold [imosQCFlag]'};
values = {firstTiltThreshold, firstFlagThreshold, secondTiltThreshold, secondFlagThreshold};
funcs = {isdeg, isvalidQC, isdeg, isvalidQC};
results = uiNumericalBox(names,values,funcs,'title','imosTiltVelositySetQC - Threshold Limits','panelTitle',matchedName);
results = uiNumericalBox(names,values,funcs,'title','imosTiltVelocitySetQC - Threshold Limits','panelTitle',matchedName);
[firstTiltThreshold,firstFlagThreshold,secondTiltThreshold,secondFlagThreshold] = results{:};
end

Expand Down

0 comments on commit 8248f35

Please sign in to comment.