From 95fea041ef9db33e534c4e3af663f87fb3858807 Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Fri, 18 Oct 2013 15:16:52 +0200 Subject: [PATCH] reporting: fix typo --- matlab/reports/@graph/graph.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matlab/reports/@graph/graph.m b/matlab/reports/@graph/graph.m index 72273c7f9..00b6537c8 100644 --- a/matlab/reports/@graph/graph.m +++ b/matlab/reports/@graph/graph.m @@ -128,7 +128,7 @@ assert(isempty(o.yrange) || (isfloat(o.yrange) && length(o.yrange) == 2 && ... assert(isempty(o.data) || isa(o.data, 'dynSeries'), ['@graph.graph: data must ' ... 'be a dynSeries']); assert(isempty(o.seriesToUse) || iscellstr(o.seriesToUse), ['@graph.graph: ' ... - 'series to use must be a cell array of string(s)']); + 'seriesToUse must be a cell array of string(s)']); assert(isempty(o.graphSize) || ((isfloat(o.graphSize) && length(o.graphSize) == 2)),... ['@graph.graph: graphSize is specified as an array with two float ' ...