From aa7bb4625e2d3b6036fa8bc28e91f41692bda0e0 Mon Sep 17 00:00:00 2001 From: Houtan Bastani <houtan@dynare.org> Date: Thu, 4 Apr 2013 07:35:54 +0200 Subject: [PATCH] reporting: fix typo --- matlab/reports/@page/page.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/matlab/reports/@page/page.m b/matlab/reports/@page/page.m index 430a0b113..a0469e0cc 100644 --- a/matlab/reports/@page/page.m +++ b/matlab/reports/@page/page.m @@ -63,10 +63,10 @@ end % Check options provided by user if ischar(o.title) - o.title = {o.title} + o.title = {o.title}; end if ischar(o.title_format) - o.title_format = {o.title_format} + o.title_format = {o.title_format}; end assert(iscellstr(o.title), ... '@page.page: title must be a cell array of strings'); @@ -84,7 +84,7 @@ assert(any(strcmp(o.orientation, valid_orientation)), ... ['@page.page: orientation must be one of ' strjoin(valid_orientation, ' ')]); if ischar(o.footnote) - o.footnote = {o.footnote} + o.footnote = {o.footnote}; end assert(iscellstr(o.footnote), ... '@page.page: footnote must be a cell array of string(s)'); -- GitLab