From: Bruno Turcksin Date: Wed, 6 Dec 2017 02:59:34 +0000 (-0500) Subject: Fix typos. X-Git-Tag: v9.0.0-rc1~678^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=77eb958d70afda3ea84147c1bd80e168e950da37;p=dealii.git Fix typos. --- diff --git a/contrib/python-bindings/include/cell_accessor_wrapper.h b/contrib/python-bindings/include/cell_accessor_wrapper.h index 6172767ad1..159057eef8 100644 --- a/contrib/python-bindings/include/cell_accessor_wrapper.h +++ b/contrib/python-bindings/include/cell_accessor_wrapper.h @@ -115,7 +115,7 @@ namespace python DeclException2(ExcVertexDoesNotExist, int, int, << "Requested vertex number " << arg1 - << "does not exist. The largest vertex number " + << " does not exist. The largest vertex number " << "acceptable is "<< arg2-1); private: diff --git a/contrib/python-bindings/source/export_triangulation.cc b/contrib/python-bindings/source/export_triangulation.cc index 27e628bde4..867cb26c0c 100644 --- a/contrib/python-bindings/source/export_triangulation.cc +++ b/contrib/python-bindings/source/export_triangulation.cc @@ -246,7 +246,7 @@ namespace python const char shift_docstring [] = - "Shift every vertex of the Triangulation by the gien shift vector \n" + "Shift every vertex of the Triangulation by the given shift vector \n" ; @@ -274,7 +274,7 @@ namespace python "faces of the triangulation to the faces of out_tria. If you need to \n" "specify manifold ids on interior faces, they have to be specified \n" "manually after the triangulation is created. This function will fail \n" - "the input Triangulation contains hanging nodes. \n" + "if the input Triangulation contains hanging nodes. \n" ;