From cc5bff921bbd4a2278f27e5cdce012deccc575f2 Mon Sep 17 00:00:00 2001 From: Houtan Bastani <houtan@dynare.org> Date: Tue, 11 Feb 2014 16:54:22 +0100 Subject: [PATCH] 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 541a34368c..cf2e0b41b5 100644 --- a/matlab/reports/@graph/graph.m +++ b/matlab/reports/@graph/graph.m @@ -109,7 +109,7 @@ assert(isfloat(o.shadeOpacity) && length(o.shadeOpacity)==1 && ... o.shadeOpacity >= 0 && o.shadeOpacity <= 1, ... '@graph.graph: o.shadeOpacity must be a real in [0 1]'); assert(isfloat(o.width), '@graph.graph: o.width must be a real number'); -assert(isfloat(o.height), '@graph.height: o.width must be a real number'); +assert(isfloat(o.height), '@graph.graph: o.height must be a real number'); assert(isfloat(o.xTickLabelRotation), '@graph.graph: o.xTickLabelRotation must be a real number'); valid_legend_locations = ... -- GitLab