From da046d378e2bc0fb797cbd1dc6e878e3c9e07f0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Tue, 5 Feb 2013 15:49:27 +0100 Subject: [PATCH] Fix typos --- mex/sources/estimation/LogLikelihoodSubSample.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mex/sources/estimation/LogLikelihoodSubSample.hh b/mex/sources/estimation/LogLikelihoodSubSample.hh index ca388c274..80f15489b 100644 --- a/mex/sources/estimation/LogLikelihoodSubSample.hh +++ b/mex/sources/estimation/LogLikelihoodSubSample.hh @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009-2012 Dynare Team + * Copyright (C) 2009-2013 Dynare Team * * This file is part of Dynare. * @@ -110,7 +110,7 @@ private: test = lapack::choleskyDecomp(Q, "L"); if (test > 0) { - mexPrintf("Caugth unhandled exception with cholesky of Q matrix: "); + mexPrintf("Caught unhandled exception with cholesky of Q matrix: "); logLikelihood = penalty; info = 1; } @@ -146,7 +146,7 @@ private: test = lapack::choleskyDecomp(H, "L"); if (test > 0) { - mexPrintf("Caugth unhandled exception with cholesky of Q matrix: "); + mexPrintf("Caught unhandled exception with cholesky of Q matrix: "); logLikelihood = penalty; info = 1; }