From 82d697c27eb4d42ce5d54bfbd28e1173e8566716 Mon Sep 17 00:00:00 2001
From: Giovanni Bussi <giovanni.bussi@gmail.com>
Date: Mon, 27 Aug 2018 20:28:43 +0200
Subject: [PATCH] fixed error message

---
 src/cltools/PdbRenumber.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cltools/PdbRenumber.cpp b/src/cltools/PdbRenumber.cpp
index 012a90b0e..21198122a 100644
--- a/src/cltools/PdbRenumber.cpp
+++ b/src/cltools/PdbRenumber.cpp
@@ -179,7 +179,7 @@ int PdbRenumber::main(FILE* in, FILE*out,Communicator& pc) {
       std::array<char,6> at;
       unsigned ii=iat;
       if(serials.size()>0) {
-        plumed_assert(iat<serials.size()) << "there are more atoms in the PDB che serials in the file";
+        plumed_assert(iat<serials.size()) << "there are more atoms in the PDB than serials in the file";
         ii=serials[iat];
       }
       const char* msg = h36::hy36encode(5,ii,&at[0]);
-- 
GitLab