From 515ee0d9af5553f02708ae9ef848151f3c5acb18 Mon Sep 17 00:00:00 2001 From: Houtan Bastani <houtan@dynare.org> Date: Fri, 26 Apr 2013 15:04:56 +0200 Subject: [PATCH] fix typo --- matlab/reporting/@graph/graph.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matlab/reporting/@graph/graph.m b/matlab/reporting/@graph/graph.m index 5a33151a6e..8b89dcca6e 100644 --- a/matlab/reporting/@graph/graph.m +++ b/matlab/reporting/@graph/graph.m @@ -100,7 +100,7 @@ assert(isint(o.legend_font_size), '@graph.graph: legend_font_size must be an int assert(islogical(o.zeroline), '@graph.graph: zeroline must be either true or false'); assert(isfloat(o.shade_opacity) && length(o.shade_opacity)==1 && ... o.shade_opacity >= 0 && o.shade_opacity <= 1, ... - '@graph.graph: o.shade_opacity must be a real in [0 1]']); + '@graph.graph: o.shade_opacity must be a real in [0 1]'); valid_legend_locations = ... {'North', 'South', 'East', 'West', ... 'NorthEast', 'SouthEast', 'NorthWest', 'SouthWest', ... -- GitLab