]> https://gitweb.dealii.org/ - dealii.git/commitdiff
more typos by Felix Gruber
authorGuido Kanschat <dr.guido.kanschat@gmail.com>
Wed, 27 Feb 2013 09:51:11 +0000 (09:51 +0000)
committerGuido Kanschat <dr.guido.kanschat@gmail.com>
Wed, 27 Feb 2013 09:51:11 +0000 (09:51 +0000)
git-svn-id: https://svn.dealii.org/trunk@28605 0785d39b-7218-0410-832d-ea1e28bc413d

15 files changed:
deal.II/include/deal.II/base/numbers.h
deal.II/include/deal.II/base/parsed_function.h
deal.II/include/deal.II/base/polynomials_abf.h
deal.II/include/deal.II/base/polynomials_bdm.h
deal.II/include/deal.II/base/polynomials_nedelec.h
deal.II/include/deal.II/base/polynomials_raviart_thomas.h
deal.II/include/deal.II/fe/fe_bdm.h
deal.II/include/deal.II/fe/fe_dg_vector.h
deal.II/include/deal.II/fe/fe_dgq.h
deal.II/include/deal.II/fe/fe_face.h
deal.II/include/deal.II/fe/fe_nedelec.h
deal.II/include/deal.II/grid/grid_reordering_internal.h
deal.II/include/deal.II/lac/lapack_full_matrix.h
deal.II/include/deal.II/lac/petsc_parallel_vector.h
deal.II/include/deal.II/lac/trilinos_vector.h

index bc03455651fbd4c96d22b0f8e1b6e1cc092a09f6..482719b75f9edcd5ad7c87af1c933277d91b0aee 100644 (file)
@@ -138,7 +138,7 @@ namespace numbers
   /**
    * A structure that, together with
    * its partial specializations
-   * NumberTraits<std::complex<number> > ,
+   * NumberTraits<std::complex<number> >,
    * provides traits and member
    * functions that make it possible
    * to write templates that work on
index d9678cb185d0aee0f2b5df9198003e96f82afd2f..b0bcf54e0414423c577fd2d5ebeedbd4712f45b1 100644 (file)
@@ -157,7 +157,7 @@ namespace Functions
      *
      *  @code
      *
-     *  set Function constants = lambda=1. , alpha=2., gamma=3.
+     *  set Function constants = lambda=1., alpha=2., gamma=3.
      *
      *  @endcode
      *
index 4fa6a66f9860a01a5690c10e261d7c37ac32cf4e..e211186dfb78da5dc968398416968d8855c0a1d8 100644 (file)
@@ -111,7 +111,7 @@ public:
   unsigned int degree () const;
 
   /**
-   * Return the name of the space ,
+   * Return the name of the space,
    * which is <tt>ABF</tt>.
    */
   std::string name () const;
index 70994912eee27617e3ea36c6f4f6bd020ec8f014..5eb1b18620dff462450d5a2a22a2fba54f88337c 100644 (file)
@@ -114,7 +114,7 @@ public:
   unsigned int degree () const;
 
   /**
-   * Return the name of the space ,
+   * Return the name of the space,
    * which is <tt>BDM</tt>.
    */
   std::string name () const;
index 70f891ef2daeaac6fe96f06e6443a76e42e718af..e571bfb9283fbb13fe83d3c87944e2299a3a62e6 100644 (file)
@@ -101,7 +101,7 @@ public:
   unsigned int degree () const;
 
   /**
-   * Return the name of the space ,
+   * Return the name of the space,
    * which is <tt>Nedelec</tt>.
    */
   std::string name () const;
index 67692053009c2723b437b996be8356610a38c47e..9aa9ae4d4b2d0889ab30b72857f3fb4d70599562 100644 (file)
@@ -56,7 +56,7 @@ public:
    * Raviart-Thomas-space, which is the degree
    * of the largest tensor product
    * polynomial space
-   * <i>Q<sub>k</sub></i> contained.
+   * <i>Q<sub>k</sub></i> contains.
    */
   PolynomialsRaviartThomas (const unsigned int k);
 
@@ -102,7 +102,7 @@ public:
   unsigned int degree () const;
 
   /**
-   * Return the name of the space ,
+   * Return the name of the space,
    * which is <tt>RaviartThomas</tt>.
    */
   std::string name () const;
index 5c26b2f4efe2800cec5267051f1b0c55d79f9be2..41c35743f3f6a8defc16c4dc26a455258f13bca6 100644 (file)
@@ -33,9 +33,9 @@ DEAL_II_NAMESPACE_OPEN
  *
  * @todo This is for 2D only.
  *
- * @todo Transformation works only for uniform, Cartesian meshes
+ * @todo Transformation works only for uniform, Cartesian meshes.
  *
- * The matching pressure psace for FE_BDM of order <i>k</i> is the
+ * The matching pressure space for FE_BDM of order <i>k</i> is the
  * element FE_DGP of order <i>k</i>.
  *
  * The BDM element of order @p p has <i>p+1</i> degrees of freedom on
index e0f59b7158fe84b9359f39db1b7a14f35db5bfe2..c85d98153f605c9ba70687489ad141c71a6a0d20 100644 (file)
@@ -208,7 +208,7 @@ class FE_DGNedelec : public FE_DGVector<PolynomialsNedelec<dim>, dim, spacedim>
 {
 public:
   /**
-   * Constructor for the N&eacute;d&eacute;lec
+   * Constructor for the discontinuous N&eacute;d&eacute;lec
    * element of degree @p p.
    */
   FE_DGNedelec (const unsigned int p);
@@ -239,7 +239,7 @@ class FE_DGRaviartThomas : public FE_DGVector<PolynomialsRaviartThomas<dim>, dim
 {
 public:
   /**
-   * Constructor for the N&eacute;d&eacute;lec
+   * Constructor for the Raviart-Thomas
    * element of degree @p p.
    */
   FE_DGRaviartThomas (const unsigned int p);
@@ -270,7 +270,7 @@ class FE_DGBDM : public FE_DGVector<PolynomialsBDM<dim>, dim, spacedim>
 {
 public:
   /**
-   * Constructor for the N&eacute;d&eacute;lec
+   * Constructor for the discontinuous BDM
    * element of degree @p p.
    */
   FE_DGBDM (const unsigned int p);
index 980277a4aa688d1744ca31e2b04b1aa5a14de73f..f1109184c8caf26609204516e044130bf4714568 100644 (file)
@@ -407,7 +407,7 @@ public:
    * Return a string that uniquely
    * identifies a finite
    * element. This class returns
-   * <tt>FE_DGQArbitraryNodes<dim>(degree)</tt> ,
+   * <tt>FE_DGQArbitraryNodes<dim>(degree)</tt>,
    * with <tt>dim</tt> and <tt>degree</tt>
    * replaced by appropriate
    * values.
index 697c20bf019665e23e7fcefd4bba7a667fd3b623..8747b6d4f922ff836e5e95b7483f6bb476c76be6 100644 (file)
@@ -63,7 +63,7 @@ public:
    * Return a string that uniquely
    * identifies a finite
    * element. This class returns
-   * <tt>FE_DGQ<dim>(degree)</tt>, with
+   * <tt>FE_FaceQ<dim>(degree)</tt>, with
    * <tt>dim</tt> and <tt>degree</tt>
    * replaced by appropriate
    * values.
index ad9ed880a81644bf1921a7c12420baadaf37001e..a66df95cfa9bd1caabcdb2284b63e76ede969cac 100644 (file)
@@ -143,7 +143,7 @@ template <int dim, int spacedim> class MappingQ;
  * The node values above rely on integrals, which will be computed by
  * quadrature rules themselves. The generalized support points are a
  * set of points such that this quadrature can be performed with
- * sufficient accuracy. The points needed are thode of
+ * sufficient accuracy. The points needed are those of
  * QGauss<sub>k+1</sub> on each edge and QGauss<sub>k+2</sub> on each face and in
  * the interior of the cell (or none for N<sub>1</sub>).
  *
index 3d15b6f19c5f773bd6878c49954442bfaa9d0a9b..1c50ed31724583bc2b3cc9103a9e370f4ad7aa56 100644 (file)
@@ -251,7 +251,7 @@ namespace internal
        * (we've closed a loop or
        * unoriented sides).
        *
-       * 6) Repeat 2), 3) ,4) and
+       * 6) Repeat 2), 3)4) and
        * 5) on other unoriented
        * sides of (A)
        *
index fa0598bfb46662df0f35f4e3ca31528df1ac0eeb..66c415e0e5c11229ceb7c0826ce4ddd9ac166f34 100644 (file)
@@ -393,7 +393,7 @@ public:
    * An approximate eigenvalue is accepted
    * as converged when it is determined to
    * lie in an interval [a,b] of width less
-   * than or equal to abs_accuracy + eps * max( |a|,|b| ) ,
+   * than or equal to abs_accuracy + eps * max( |a|,|b| ),
    * where eps is the machine precision.
    * If abs_accuracy is less than
    * or equal to zero, then  eps*|t| will
index 16e8d97a0a4c89486c872aa91325adedc3e41f2d..c779eeaec43d813986a4065d635c8eecc120d62c 100644 (file)
@@ -74,7 +74,7 @@ namespace PETScWrappers
      * other processes to join in on this. Since the other processes don't call
      * this function, you will either get a time-out on the first process, or,
      * worse, by the time the next a callto a PETSc function generates an MPI
-     * message on the other processes , you will get a cryptic message that only a
+     * message on the other processes, you will get a cryptic message that only a
      * subset of processes attempted a communication. These bugs can be very hard
      * to figure out, unless you are well-acquainted with the communication model
      * of MPI, and know which functions may generate MPI messages.
index b1f53d34de6c817d08de43fd411fa0603485a5d2..de581cf4608049f14334f110b942055aef86e8a0 100644 (file)
@@ -85,7 +85,7 @@ namespace TrilinosWrappers
      * all the other processes to join in on this. Since the other processes
      * don't call this function, you will either get a time-out on the first
      * process, or, worse, by the time the next a callto a Trilinos function
-     * generates an MPI message on the other processes , you will get a
+     * generates an MPI message on the other processes, you will get a
      * cryptic message that only a subset of processes attempted a
      * communication. These bugs can be very hard to figure out, unless you
      * are well-acquainted with the communication model of MPI, and know

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.