From 4eabbfff8ed20989199acea8c0f0ea96b6004bf6 Mon Sep 17 00:00:00 2001 From: Gerardo Tauriello <gerardo.tauriello@unibas.ch> Date: Mon, 13 May 2019 17:03:37 +0200 Subject: [PATCH] Fix typo --- modules/mol/alg/src/construct_cbeta.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/mol/alg/src/construct_cbeta.cc b/modules/mol/alg/src/construct_cbeta.cc index 5eaf96046..2a916ec9e 100644 --- a/modules/mol/alg/src/construct_cbeta.cc +++ b/modules/mol/alg/src/construct_cbeta.cc @@ -42,7 +42,7 @@ bool CBetaInserter::VisitResidue(const mol::ResidueHandle& res) } catch(...) { LOG_WARNING("residue " << res.GetQualifiedName() - << "doesn't have enough backbone atoms to reconstruct CBeta position"); + << " doesn't have enough backbone atoms to reconstruct CBeta position"); return false; } return false; @@ -83,7 +83,7 @@ geom::Vec3 CBetaPosition(const ResidueHandle& residue, Real bond_length) if (!(ca.IsValid() && c.IsValid() && n.IsValid())) { std::stringstream ss; ss << "residue " << residue.GetQualifiedName() - << "doesn't have enough backbone atoms to reconstruct CBeta position"; + << " doesn't have enough backbone atoms to reconstruct CBeta position"; throw ost::Error(ss.str()); } return CBetaPosition(n.GetPos(), ca.GetPos(), c.GetPos(), bond_length); -- GitLab