reporting: fix typos in validity checks

remove-priordens
Houtan Bastani 2013-05-14 12:47:57 +02:00
parent 02ca95e811
commit 8e20b98d98
1 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@ assert(~isempty(o.data) && isa(o.data, 'dynSeries'), ...
assert(ischar(o.color), '@series.write: color must be a string');
assert(ischar(o.tableNegColor), '@series.write: tableNegColor must be a string');
assert(ischar(o.tablePosColor), '@series.write: tablePosColor must be a string');
assert(islogical(o.showTableMarkers), '@series.write: showTableMarkers must be a string');
assert(islogical(o.tableAlignRight), '@series.write: tableAlignRight must be a string');
assert(islogical(o.showTableMarkers), '@series.write: showTableMarkers must be true or false');
assert(islogical(o.tableAlignRight), '@series.write: tableAlignRight must be true or false');
%% Write Output
dataString = ['%.' num2str(precision) 'f'];