From c8455ccad5bc8e703f32aa082f89086d1dc9b415 Mon Sep 17 00:00:00 2001 From: ageay Date: Fri, 8 Apr 2011 08:15:01 +0000 Subject: [PATCH] Need of english exercises. --- src/MEDCoupling/MEDCouplingUMesh.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/MEDCoupling/MEDCouplingUMesh.cxx b/src/MEDCoupling/MEDCouplingUMesh.cxx index a654f65b4..31fa7d058 100644 --- a/src/MEDCoupling/MEDCouplingUMesh.cxx +++ b/src/MEDCoupling/MEDCouplingUMesh.cxx @@ -159,20 +159,20 @@ void MEDCouplingUMesh::checkCoherency1(double eps) const throw(INTERP_KERNEL::Ex { if(nodeId>=nbOfNodes) { - std::ostringstream oss; oss << "Cell #" << i << " has is consituted of node #" << nodeId << " whereas there are only " << nbOfNodes << " nodes !"; + std::ostringstream oss; oss << "Cell #" << i << " is consituted of node #" << nodeId << " whereas there are only " << nbOfNodes << " nodes !"; throw INTERP_KERNEL::Exception(oss.str().c_str()); } } else if(nodeId<-1) { - std::ostringstream oss; oss << "Cell #" << i << " has is consituted of node #" << nodeId << " in connectivity ! sounds bad !"; + std::ostringstream oss; oss << "Cell #" << i << " is consituted of node #" << nodeId << " in connectivity ! sounds bad !"; throw INTERP_KERNEL::Exception(oss.str().c_str()); } else { if((INTERP_KERNEL::NormalizedCellType)(ptr[ptrI[i]])!=INTERP_KERNEL::NORM_POLYHED) { - std::ostringstream oss; oss << "Cell #" << i << " has is consituted of node #-1 in connectivity ! sounds bad !"; + std::ostringstream oss; oss << "Cell #" << i << " is consituted of node #-1 in connectivity ! sounds bad !"; throw INTERP_KERNEL::Exception(oss.str().c_str()); } } -- 2.39.2