From: bangerth Date: Fri, 15 Feb 2013 14:13:54 +0000 (+0000) Subject: Patch by Felix Gruber: Fix many typos. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3b31b9d3dadd166216345c71ed30a9ca99871b3;p=dealii-svn.git Patch by Felix Gruber: Fix many typos. git-svn-id: https://svn.dealii.org/trunk@28404 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/base/smartpointer.h b/deal.II/include/deal.II/base/smartpointer.h index afb56e0f90..5037ce81cc 100644 --- a/deal.II/include/deal.II/base/smartpointer.h +++ b/deal.II/include/deal.II/base/smartpointer.h @@ -24,7 +24,7 @@ DEAL_II_NAMESPACE_OPEN * but make sure that the object pointed to is not deleted in the course of * use of the pointer by signalling the pointee its use. * - * Objects pointed to, that is ,the class T, should inherit + * Objects pointed to, i.e. the class T, should inherit * Subscriptor or must implement the same functionality. Null pointers * are an exception from this rule and are allowed, too. * diff --git a/deal.II/include/deal.II/base/tensor_function.h b/deal.II/include/deal.II/base/tensor_function.h index 81b0dc008c..b8a7bd7910 100644 --- a/deal.II/include/deal.II/base/tensor_function.h +++ b/deal.II/include/deal.II/base/tensor_function.h @@ -36,7 +36,7 @@ DEAL_II_NAMESPACE_OPEN * use the vector_value function, which however does not return * the value, but rather writes it into the address provided by its * second argument. The reason for the different behaviour of the - * classes is that in the case if tensor valued functions, the size + * classes is that in the case of tensor valued functions, the size * of the argument is known to the compiler a priori, such that the * correct amount of memory can be allocated on the stack for the * return value; on the other hand, for the vector valued functions, diff --git a/deal.II/include/deal.II/distributed/solution_transfer.h b/deal.II/include/deal.II/distributed/solution_transfer.h index aa230fcf1a..8c444d7b06 100644 --- a/deal.II/include/deal.II/distributed/solution_transfer.h +++ b/deal.II/include/deal.II/distributed/solution_transfer.h @@ -32,7 +32,7 @@ namespace parallel * coarsening a distributed grid and * handles the necessary communication. * - * @note: It is important to note, that if you use more than one + * @note It is important to note, that if you use more than one * SolutionTransfer object at the same time, that the calls to * prepare_*() and interpolate()/deserialize() need to be in the same order. * diff --git a/deal.II/include/deal.II/dofs/dof_faces.h b/deal.II/include/deal.II/dofs/dof_faces.h index eb79f58134..a9062e8bf9 100644 --- a/deal.II/include/deal.II/dofs/dof_faces.h +++ b/deal.II/include/deal.II/dofs/dof_faces.h @@ -41,7 +41,7 @@ namespace internal * that is associated with faces, rather than cells, as this information is 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 + * degrees of freedom located on quads and lines. In 1D we do nothing, as the faces of * lines are vertices which are treated seperately. * * Apart from the DoFObjects object containing the data to store (degree of freedom diff --git a/deal.II/include/deal.II/dofs/dof_levels.h b/deal.II/include/deal.II/dofs/dof_levels.h index b721b1f61f..dbd19dc965 100644 --- a/deal.II/include/deal.II/dofs/dof_levels.h +++ b/deal.II/include/deal.II/dofs/dof_levels.h @@ -48,7 +48,7 @@ namespace internal * * The indices of degrees of freedom located on lower dimensional * objects, i.e. on lines for 2D and on quads and lines for 3D are - * treated similarly than that on cells. However, theses geometrical + * treated similarly than that on cells. However, these geometrical * objects, which are called faces as a generalisation, are not * organised in a hierarchical structure of levels. Therefore, the * degrees of freedom located on these objects are stored in separate diff --git a/deal.II/include/deal.II/dofs/number_cache.h b/deal.II/include/deal.II/dofs/number_cache.h index 4d107d39f9..d9ba385082 100644 --- a/deal.II/include/deal.II/dofs/number_cache.h +++ b/deal.II/include/deal.II/dofs/number_cache.h @@ -28,7 +28,7 @@ namespace internal * A structure used by the * DoFHandler classes to store * information about the degrees - * of freedom they deals with. + * of freedom they deal with. */ struct NumberCache { diff --git a/deal.II/include/deal.II/fe/fe.h b/deal.II/include/deal.II/fe/fe.h index 999fd6466c..0e8633a755 100644 --- a/deal.II/include/deal.II/fe/fe.h +++ b/deal.II/include/deal.II/fe/fe.h @@ -2417,7 +2417,7 @@ protected: * the library, for example the * constructors of FESystem as * well as the hp::FECollection - * class, need to make copied of + * class, need to make copies of * finite elements without * knowing their exact type. They * do so through this function. diff --git a/deal.II/include/deal.II/fe/fe_base.h b/deal.II/include/deal.II/fe/fe_base.h index ae47af985d..ddd8e1565d 100644 --- a/deal.II/include/deal.II/fe/fe_base.h +++ b/deal.II/include/deal.II/fe/fe_base.h @@ -302,7 +302,7 @@ public: /** * Constructor, computing all necessary values from the distribution of dofs - * to geometrcal objects. + * to geometrical objects. * * @param dofs_per_object Number of dofs on geometrical objects for each * dimension. In this vector, entry 0 refers to dofs on vertices, entry 1 on diff --git a/deal.II/include/deal.II/fe/fe_dgq.h b/deal.II/include/deal.II/fe/fe_dgq.h index e2c1190b88..980277a4aa 100644 --- a/deal.II/include/deal.II/fe/fe_dgq.h +++ b/deal.II/include/deal.II/fe/fe_dgq.h @@ -96,7 +96,7 @@ public: * Return a string that uniquely * identifies a finite * element. This class returns - * FE_DGQ(degree) , with + * FE_DGQ(degree), with * dim and degree * replaced by appropriate * values. diff --git a/deal.II/include/deal.II/fe/fe_face.h b/deal.II/include/deal.II/fe/fe_face.h index 936c0a286b..697c20bf01 100644 --- a/deal.II/include/deal.II/fe/fe_face.h +++ b/deal.II/include/deal.II/fe/fe_face.h @@ -63,7 +63,7 @@ public: * Return a string that uniquely * identifies a finite * element. This class returns - * FE_DGQ(degree) , with + * FE_DGQ(degree), with * dim and degree * replaced by appropriate * values. diff --git a/deal.II/include/deal.II/fe/fe_poly.h b/deal.II/include/deal.II/fe/fe_poly.h index 4a5042d9c7..ba8ccd7297 100644 --- a/deal.II/include/deal.II/fe/fe_poly.h +++ b/deal.II/include/deal.II/fe/fe_poly.h @@ -22,8 +22,8 @@ DEAL_II_NAMESPACE_OPEN /** * This class gives a unified framework for the implementation of - * FiniteElement classes based on a polynomial spaces like the - * TensorProductPolynomials or a PolynomialSpace classes. + * FiniteElement classes based on polynomial spaces like the + * TensorProductPolynomials or PolynomialSpace classes. * * Every class conforming to the following interface can be used as * template parameter POLY. diff --git a/deal.II/include/deal.II/fe/fe_poly_face.h b/deal.II/include/deal.II/fe/fe_poly_face.h index a4499b61c1..10ccec681b 100644 --- a/deal.II/include/deal.II/fe/fe_poly_face.h +++ b/deal.II/include/deal.II/fe/fe_poly_face.h @@ -28,7 +28,7 @@ DEAL_II_NAMESPACE_OPEN * based on polynomial spaces like the TensorProductPolynomials or a * PolynomialSpace classes. * - * Every class that implements following functions can be used as + * Every class that implements the following functions can be used as * template parameter POLY. * * @code diff --git a/deal.II/include/deal.II/fe/fe_poly_tensor.h b/deal.II/include/deal.II/fe/fe_poly_tensor.h index 5650e3365c..4a8c3c235f 100644 --- a/deal.II/include/deal.II/fe/fe_poly_tensor.h +++ b/deal.II/include/deal.II/fe/fe_poly_tensor.h @@ -92,7 +92,7 @@ DEAL_II_NAMESPACE_OPEN * * @note The matrix #inverse_node_matrix should have dimensions zero * before this piece of code is executed. Only then, - * shape_value_component() will return the raw bolynomial j as + * shape_value_component() will return the raw polynomial j as * defined in the polynomial space POLY. * *

Setting the transformation

diff --git a/deal.II/include/deal.II/grid/tria_levels.h b/deal.II/include/deal.II/grid/tria_levels.h index 70f35c0a4d..da4669901a 100644 --- a/deal.II/include/deal.II/grid/tria_levels.h +++ b/deal.II/include/deal.II/grid/tria_levels.h @@ -82,7 +82,7 @@ namespace internal * of the cells. Convention is, that the * neighbors of the cell with index @p i * are stored in the fields following - * $i*(2*real_space_dimension)$, e.g. in + * $i*(2*real\_space\_dimension)$, e.g. in * one spatial dimension, the neighbors * of cell 0 are stored in neighbors[0] * and neighbors[1], the neighbors of diff --git a/deal.II/include/deal.II/numerics/fe_field_function.h b/deal.II/include/deal.II/numerics/fe_field_function.h index 0d28f034d6..2ac4043bcb 100644 --- a/deal.II/include/deal.II/numerics/fe_field_function.h +++ b/deal.II/include/deal.II/numerics/fe_field_function.h @@ -41,7 +41,7 @@ namespace Functions * element function. In order to do so, it needs to find out where * the points lie. * - * If you know in advance in which cell your points lye, you can + * If you know in advance in which cell your points lie, you can * accelerate things a bit, by calling set_active_cell before * asking for values or gradients of the function. If you don't do * this, and your points don't lie in the cell that is currently diff --git a/deal.II/include/deal.II/numerics/matrix_tools.h b/deal.II/include/deal.II/numerics/matrix_tools.h index a34eec00b1..82a9b3a54d 100644 --- a/deal.II/include/deal.II/numerics/matrix_tools.h +++ b/deal.II/include/deal.II/numerics/matrix_tools.h @@ -685,7 +685,7 @@ namespace MatrixCreator * or to the first nonzero main diagonal entry if it is zero for some reason. * Of course we have to change the right hand side appropriately. This is not * a very good strategy, but it at least should give the main diagonal entry a - * value in the right order of dimension, which makes the solvution process a + * value in the right order of dimension, which makes the solution process a * bit more stable. A refined algorithm would set the entry to the mean of the * other diagonal entries, but this seems to be too expensive. * diff --git a/deal.II/include/deal.II/numerics/vector_tools.h b/deal.II/include/deal.II/numerics/vector_tools.h index 2b437befa5..badbaa2f4e 100644 --- a/deal.II/include/deal.II/numerics/vector_tools.h +++ b/deal.II/include/deal.II/numerics/vector_tools.h @@ -686,7 +686,7 @@ namespace VectorTools * map of boundary values. * * The parameter - * @p function_map argument + * @p function_map * provides a list of boundary * indicators to be handled by * this function and corresponding