]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Fix a bunch of typos in comments, using the script from https://github.com/vlajos...
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 8 Jul 2013 13:55:30 +0000 (13:55 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 8 Jul 2013 13:55:30 +0000 (13:55 +0000)
git-svn-id: https://svn.dealii.org/trunk@29952 0785d39b-7218-0410-832d-ea1e28bc413d

15 files changed:
deal.II/doc/doxygen/headers/exceptions.h
deal.II/include/deal.II/base/convergence_table.h
deal.II/include/deal.II/base/exceptions.h
deal.II/include/deal.II/base/quadrature_lib.h
deal.II/include/deal.II/dofs/dof_faces.h
deal.II/include/deal.II/dofs/dof_renumbering.h
deal.II/include/deal.II/dofs/dof_tools.h
deal.II/include/deal.II/fe/fe_tools.h
deal.II/include/deal.II/grid/grid_generator.h
deal.II/include/deal.II/grid/tria.h
deal.II/include/deal.II/hp/dof_faces.h
deal.II/include/deal.II/lac/vector_view.h
deal.II/source/grid/grid_generator.cc
deal.II/source/grid/tria.cc
deal.II/source/lac/slepc_solver.cc

index c39d08dd41c2c9ded49b180c3cd1a82f035b5e1e..b6f5cf43b6b84931a84cbe9a19855255ec5daac3 100644 (file)
  *      do_something ();
  *    }
  *    catch (exception &e) {
- *      std::cerr << "Exception occured:" << std::endl
+ *      std::cerr << "Exception occurred:" << std::endl
  *           << e.what ()
  *           << std::endl;
  *      do_something_to_reciver ();
index a262a6be3b555fff7b48296cb203020fa6164681..e406a7f3eec76398fad73d342d12c9364a7929f3 100644 (file)
@@ -188,7 +188,7 @@ public:
    * omitted (see previous function) and execpt of the columns that are
    * previously evaluated rate columns.  This function allows to evaluate the
    * convergence rate for almost all columns of a table without calling
-   * evaluate_convergence_rates() for each column seperately.
+   * evaluate_convergence_rates() for each column separately.
    *
    * Example:
    * Columns like <tt>n cells</tt> or <tt>n dofs</tt> columns may be wanted to
index 59b93fd0ffaa4c5de30d29913df0213fb899d340..72c1a9ad9c4757b8a7f8d4d15d44881175677f97 100644 (file)
@@ -79,7 +79,7 @@ public:
 
   /**
    * Print more specific information about the exception which
-   * occured. Overload this function in your own exception classes.
+   * occurred. Overload this function in your own exception classes.
    */
   virtual void print_info (std::ostream &out) const;
 
@@ -148,7 +148,7 @@ namespace deal_II_exceptions
    * processes is redirected to the same console window. In this case,
    * it is convenient to set as additional name the name of the host on
    * which the program runs, so that one can see in which instance of the
-   * program the exception occured.
+   * program the exception occurred.
    *
    * The string pointed to by the argument is copied, so doesn't need to be
    * stored after the call to this function.
index b152a99937ce2ec609e4b326a68679547652492c..a2cb1611dce2b2c10bc9c3c69fd7e2a28fdc010f 100644 (file)
@@ -295,7 +295,7 @@ public:
    * $[x_0,1]$, the actual location of the
    * singularity, the scale factor inside
    * the logarithmic function and a flag
-   * that decides wether the singularity is
+   * that decides whether the singularity is
    * left inside the quadrature formula or
    * it is factored out, to be included in
    * the integrand.
@@ -334,7 +334,7 @@ protected:
  * original quadrature, and this process is repeated for the next half
  * element.
  *
- * Upon construction it is possible to specify wether we want the
+ * Upon construction it is possible to specify whether we want the
  * singularity removed, or not. In other words, this quadrature can be
  * used to integrate $g(x) = 1/R\ f(x)$, or simply $f(x)$, with the $1/R$
  * factor already included in the quadrature weights.
index a9062e8bf9c36d9b1e2fa79ccc776df3352805fc..a9fccc9a8b61e6d009b06eb2f2600d2504325f73 100644 (file)
@@ -42,7 +42,7 @@ namespace internal
      * the hierarchical structure of cells, which are organized in levels. In 2D we store
      * information on degrees of freedom located on lines whereas in 3D we store information on
      * degrees of freedom located on quads and lines. In 1D we do nothing, as the faces of
-     * lines are vertices which are treated seperately.
+     * lines are vertices which are treated separately.
      *
      * Apart from the DoFObjects object containing the data to store (degree of freedom
      * indices) we do not store any data or provide any functionality. However, we do implement
@@ -72,7 +72,7 @@ namespace internal
 
     /**
      * Store the indices of degrees of freedom on faces in 1D. As these would be vertices, which
-     * are treted seperately, don't do anything.
+     * are treted separately, don't do anything.
      *
      * @author Tobias Leicht, 2006
      */
index ae80171850eb845805d83a3eb5bfcbcd7abebf3f..63896ca4f5ae05d598ef288c373f870522eb1376 100644 (file)
@@ -167,7 +167,7 @@ DEAL_II_NAMESPACE_OPEN
  * The component_wise() function allows not only to honor enumeration based on
  * vector components, but also allows to group together vector components into
  * "blocks" using a defaulted argument to the various DoFRenumber::component_wise()
- * functinos (see @ref GlossComponent vs @ref GlossBlock for a description of
+ * functions (see @ref GlossComponent vs @ref GlossBlock for a description of
  * the difference). The blocks designated through this argument may, but do not
  * have to be, equal to the blocks that the finite element reports. For example,
  * a typical Stokes element would be
index 1b0b49a0f35f8d4ca5a9a15a7467c4964d399ee1..f256fda570355d0a3777a5430bfb86c6722235fe 100644 (file)
@@ -1384,7 +1384,7 @@ namespace DoFTools
 
   /**
    * Do the same thing as the corresponding
-   * extract_dofs() functino for one level
+   * extract_dofs() function for one level
    * of a multi-grid DoF numbering.
    */
   template <class DH>
@@ -1396,7 +1396,7 @@ namespace DoFTools
 
   /**
    * Do the same thing as the corresponding
-   * extract_dofs() functino for one level
+   * extract_dofs() function for one level
    * of a multi-grid DoF numbering.
    */
   template <class DH>
index de51d2aa9bdd061f979bb5bebbf8f6cbeab17e18..694debcccad546ee5437f5c44462e7afa548efea 100644 (file)
@@ -259,7 +259,7 @@ namespace FETools
    * For all possible (isotropic and anisotropic) refinement cases compute the
    * embedding matrices from a coarse cell to the child cells. Each column of
    * the resulting matrices contains the representation of a coarse grid basis
-   * functon by the fine grid basis; the matrices are split such that there is
+   * function by the fine grid basis; the matrices are split such that there is
    * one matrix for every child.
    *
    * This function computes the coarse grid function in a sufficiently large
index 702bb1e01faa4d1669d4ba573e32db12fbb71f0a..137b6482188062050c67c2336b80c0a6304c697d 100644 (file)
@@ -607,7 +607,7 @@ public:
    * @arg @p L: extension in @p z-direction (only used in 3d)
    * @arg @p repetitions: number of subdivisions
    *      along the @p z-direction
-   * @arg @p colorize: wether to assign different
+   * @arg @p colorize: whether to assign different
    *     boundary indicators to different faces.
    *    The colors are given in lexicographic
    *    ordering for the flat faces (0 to 3 in 2d,
index 40e896970503e1175d6b00b0a25e7c748a788624..5f1dfbf2c9047043f47f27934d4747ff68997e9b 100644 (file)
@@ -1455,7 +1455,7 @@ public:
    *  RefinementListener.
    *
    * @note The use of this class has been
-   * superceded by the signals mechanism.
+   * superseded by the signals mechanism.
    * See the general documentation of the
    * Triangulation class for more information.
    *
@@ -1470,7 +1470,7 @@ public:
      * class also has virtual functions.
      *
      * @note The use of this class has been
-     * superceded by the signals mechanism.
+     * superseded by the signals mechanism.
      * See the general documentation of the
      * Triangulation class for more information.
      *
@@ -1486,7 +1486,7 @@ public:
      * registered with the triangulation.
      *
      * @note The use of this class has been
-     * superceded by the signals mechanism.
+     * superseded by the signals mechanism.
      * See the general documentation of the
      * Triangulation class for more information.
      *
@@ -1504,7 +1504,7 @@ public:
      * registered with the triangulation.
      *
      * @note The use of this class has been
-     * superceded by the signals mechanism.
+     * superseded by the signals mechanism.
      * See the general documentation of the
      * Triangulation class for more information.
      *
@@ -1529,7 +1529,7 @@ public:
      * derived classes.
      *
      * @note The use of this class has been
-     * superceded by the signals mechanism.
+     * superseded by the signals mechanism.
      * See the general documentation of the
      * Triangulation class for more information.
      *
@@ -1552,7 +1552,7 @@ public:
      * implemented in derived classes.
      *
      * @note The use of this class has been
-     * superceded by the signals mechanism.
+     * superseded by the signals mechanism.
      * See the general documentation of the
      * Triangulation class for more information.
      *
@@ -2203,7 +2203,7 @@ public:
    *  the Triangulation is refined.
    *
    * @note The use of this function has been
-   * superceded by the signals mechanism.
+   * superseded by the signals mechanism.
    * See the general documentation of the
    * Triangulation class for more information.
    *
@@ -2221,7 +2221,7 @@ public:
    *  Triangulation.
    *
    * @note The use of this function has been
-   * superceded by the signals mechanism.
+   * superseded by the signals mechanism.
    * See the general documentation of the
    * Triangulation class for more information.
    *
@@ -3201,7 +3201,7 @@ public:
    */
   DeclException0 (ExcTriangulationNotEmpty);
   /**
-   * Trying to re-read a grid, an error occured.
+   * Trying to re-read a grid, an error occurred.
    *
    * @ingroup Exceptions
    */
@@ -3521,7 +3521,7 @@ private:
    *  this contains nothing, in 2D it contains data
    *  concerning lines and in 3D quads and lines.  All of
    *  these have no level and are therefore treated
-   *  seperately.
+   *  separately.
    */
   dealii::internal::Triangulation::TriaFaces<dim> *faces;
 
index 4896d69b1e246002966154108c8e23bb24bbd847..12e3cbfb419d85c7ae913f7df84cce14982e066c 100644 (file)
@@ -43,7 +43,7 @@ namespace internal
      * independent of the hierarchical structure of cells, which are organized in levels. In 2D
      * we store information on degrees of freedom located on lines whereas in 3D we store
      * information on drefrees of freedom located on quads and lines. In 1D we do nothing, as
-     * the faces of lines are vertices which are treated seperately.
+     * the faces of lines are vertices which are treated separately.
      *
      * Apart from the internal::hp::DoFObjects object containing the data to store
      * (degree of freedom indices) and all the access-functionality to this data, we do not
@@ -81,7 +81,7 @@ namespace internal
 
     /**
      * Store the indices of degrees of freedom on faces in 1D. As these would be vertices, which
-     * are treted seperately, don't do anything.
+     * are treted separately, don't do anything.
      *
      * @ingroup hp
      * @author Tobias Leicht, 2006
index 72fae49f8e5733987ed00d25473dced3279188b1..c9d26541faac3fb46b2c4f86302af9b23e05cbc3 100644 (file)
@@ -217,7 +217,7 @@ public:
    * view_of_long_vector(i), with i>0 might
    * cause an attempt to access invalid
    * areas of memory, or might function
-   * properly, depending on wether or not
+   * properly, depending on whether or not
    * the system was able to allocate some
    * memory consecutively after the
    * original allocation.
index 34bcf1a71e31fd15774324d58704804defabba18..2081edd4599cc463179dc4d14ebbca8305ed7950 100644 (file)
@@ -2589,7 +2589,7 @@ GridGenerator::cylinder (Triangulation<3> &tria,
   // respectively. note that we also
   // have to deal with those lines
   // that are purely in the interior
-  // of the ends. we determine wether
+  // of the ends. we determine whether
   // an edge is purely in the
   // interior if one of its vertices
   // is at coordinates '+-a' as set
index f9a3901d7a50a11dbb2a5544bb7d60c42fc9dd81..5e42db0c5e62a0f1928898a90c139630f1855be2 100644 (file)
@@ -2049,7 +2049,7 @@ namespace internal
         // first, we only collect the data
         // now
 
-        // the bool array stores, wether the lines
+        // the bool array stores, whether the lines
         // are in the standard orientation or not
 
         // note that QuadComparator is a
@@ -2565,7 +2565,7 @@ namespace internal
 
             else
               {
-                // look wether it exists in
+                // look whether it exists in
                 // reverse direction
                 std::swap (line_vertices.first, line_vertices.second);
                 if (needed_lines.find(line_vertices) != needed_lines.end())
@@ -2623,7 +2623,7 @@ namespace internal
                 if (needed_lines.find(line_vertices) != needed_lines.end())
                   line[i] = needed_lines[line_vertices];
                 else
-                  // look wether it exists
+                  // look whether it exists
                   // in reverse direction
                   {
                     std::swap (line_vertices.first, line_vertices.second);
@@ -9329,7 +9329,7 @@ namespace internal
 
       /**
        * Helper function for
-       * @p fix_coarsen_flags. Return wether
+       * @p fix_coarsen_flags. Return whether
        * coarsening of this cell is allowed.
        * Coarsening can be forbidden if the
        * neighboring cells are or will be
@@ -9386,7 +9386,7 @@ namespace internal
                   // to the common neighbor cell,
                   // not to its children. what we
                   // really want to know in the
-                  // following is, wether the
+                  // following is, whether the
                   // neighbor cell is refined twice
                   // with reference to our cell.
                   // that only has to be asked, if
@@ -9744,7 +9744,7 @@ create_triangulation (const std::vector<Point<spacedim> >    &v,
       Its entries are indexes by the local indeces of the common face.
       For example if two elements share a face, and this face is
       face 0 for element 0 and face 1 for element 1, then
-      table(0,1) will tell wether the orientation are the same (true) or
+      table(0,1) will tell whether the orientation are the same (true) or
       opposite (false).
 
       Even though there may be a combinatorial/graph theory argument to get
@@ -13617,7 +13617,7 @@ bool Triangulation<dim,spacedim>::prepare_coarsening_and_refinement ()
       //    next global loop. when this
       //    function terminates, the
       //    requirement will be
-      //    fullfilled. However, it might be
+      //    fulfilled. However, it might be
       //    faster to insert an inner loop
       //    here.
       bool changed = true;
index 2703bc964c90435b7bb1d5d112a40bde345fbc6f..fff1aa9d8ec4a9874e8c189279f3fc2a69bb0905 100644 (file)
@@ -448,7 +448,7 @@ namespace SLEPcWrappers
                              this->solver_control.max_steps());
     AssertThrow (ierr == 0, ExcSLEPcError(ierr));
 #else
-    // Supress compiler warnings about unused paameters.
+    // Suppress compiler warnings about unused parameters.
     (void) eps;
 
     // PETSc/SLEPc version must be > 3.1.0.
@@ -481,7 +481,7 @@ namespace SLEPcWrappers
                              this->solver_control.max_steps());
     AssertThrow (ierr == 0, ExcSLEPcError(ierr));
 #else
-    // Supress compiler warnings about unused paameters.
+    // Suppress compiler warnings about unused parameters.
     (void) eps;
 
     // PETSc/SLEPc version must be > 3.1.0.
@@ -517,7 +517,7 @@ namespace SLEPcWrappers
                              this->solver_control.max_steps());
     AssertThrow (ierr == 0, ExcSLEPcError(ierr));
 #else
-    // Supress compiler warnings about unused paameters.
+    // Suppress compiler warnings about unused parameters.
     (void) eps;
 
     Assert ((false),

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.