From 9b17c5db4bdb04700dd1647e645f812c19729efc Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Fri, 24 Jan 2014 11:11:57 -0600 Subject: [PATCH] fix typo --- matlab/reports/@report/write.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/matlab/reports/@report/write.m b/matlab/reports/@report/write.m index a72d462b9..dc5f583a1 100644 --- a/matlab/reports/@report/write.m +++ b/matlab/reports/@report/write.m @@ -11,7 +11,7 @@ function o = write(o) % SPECIAL REQUIREMENTS % none -% Copyright (C) 2013 Dynare Team +% Copyright (C) 2013-2014 Dynare Team % % This file is part of Dynare. % @@ -30,7 +30,7 @@ function o = write(o) [fid, msg] = fopen(o.filename, 'w'); if fid == -1 - error(['@report.subsasgn: ' msg]); + error(['@report.write: ' msg]); end fprintf(fid, '%% Report Object\n');