]> https://gitweb.dealii.org/ - dealii.git/commitdiff
reword the few sections of library to be compliant with gender-neutral wording. 9273/head
authorKrishnakumar Gopalakrishnan <krishna.kumar@ucl.ac.uk>
Thu, 9 Jan 2020 19:14:08 +0000 (19:14 +0000)
committerKrishnakumar Gopalakrishnan <krishna.kumar@ucl.ac.uk>
Thu, 9 Jan 2020 23:28:24 +0000 (23:28 +0000)
Gender neutral-wording for existing female-pronouns etc. She-> they. Her->their

fixes a usage of he->they missed in previous commit

undo the changes to the files inside bundled/ that were touched upon by earlier commits

18 files changed:
doc/doxygen/headers/fe_vs_mapping_vs_fevalues.h
doc/doxygen/headers/update_flags.h
doc/news/3.1.0-vs-3.1.1.h
doc/news/3.1.0-vs-3.2.0.h
examples/step-17/doc/intro.dox
include/deal.II/base/exceptions.h
include/deal.II/base/job_identifier.h
include/deal.II/dofs/dof_handler.h
include/deal.II/lac/block_sparsity_pattern.h
include/deal.II/lac/petsc_block_sparse_matrix.h
include/deal.II/lac/precondition_selector.h
include/deal.II/lac/solver_selector.h
include/deal.II/lac/trilinos_block_sparse_matrix.h
include/deal.II/lac/trilinos_precondition.h
include/deal.II/numerics/vector_tools.templates.h
source/fe/fe_values.cc
source/grid/tria.cc
source/lac/trilinos_vector.cc

index 0e21a3efd05ac27e768b56cb1b0bc89d9e1e923d..6b6cf76e8b150f290f12b3d5d6c5d8b899cb21ca 100644 (file)
  * <h2>What to compute?</h2>
  *
  * Let's say a user wants to compute the gradients of shape functions,
- * for example to compute the integral above. Then she would initialize
+ * for example to compute the integral above. Then they would initialize
  * an FEValues object by giving the update_gradients flag (as is done
  * in basically every tutorial program, starting with step-3). What
  * this indicates is that the user expects the FEValues object to be
index b49baaf06cb7718fd7122cb8a54f97b6d18e99ca..08c8e05effb500b011693d7e088ffed3dbd96a25 100644 (file)
  * 
  * As outlined above, we have now determined the final set of things that are
  * necessary to satisfy a user's desired pieces of information as conveyed by
- * the update flags she provided. This information will then typically be queried
+ * the update flags they provided. This information will then typically be queried
  * on every cell the user code visits in a subsequent integration loop.
  * 
  * Given that many of the things mappings or finite element classes compute are
index c47264f0e9a375b46e5c9d8b0a46b38500693e97..8b4e81ec2a2a6fa18bf1e3d35077dd34dd47fe18 100644 (file)
@@ -109,7 +109,7 @@ All entries are signed with the names of the author.
        class="class">SparseMatrix&lt;long double&gt;</code> are removed as a
        prerelease of gcc3.0 fails to compile it. Now the user of <code
        class="class">SparseMatrix&lt;long double&gt;</code> needs to include
-       <code>lac/include/lac/sparse_matrix.templates.h</code> into his
+       <code>lac/include/lac/sparse_matrix.templates.h</code> into their
        source file and to use a different compiler, e.g. gcc 2.95.2 or
        a future version of gcc3.0 (that will then hopefully be fixed).
        <br>
index b6b9c3cd703ee395ece94d045aa7c6961eb757e6..2ab8e870dd6c930a713e76641917bac0f48feb4b 100644 (file)
@@ -572,7 +572,7 @@ All entries are signed with the names of the author.
        removed as a prerelease of gcc3.0 fails to compile it. A user
        of <code>SparseMatrix&lt;long double&gt;</code>
        needs now to include
-       <code>lac/include/lac/sparse_matrix.templates.h</code> into his
+       <code>lac/include/lac/sparse_matrix.templates.h</code> into their
        source file and to use an appropriate compiler, e.g. gcc2.95.2 or
        a future version of gcc3.0 (that will then hopefully be fixed).
        <br>
@@ -932,7 +932,7 @@ All entries are signed with the names of the author.
        class="member">create_mass_matrix</code> function with two
        arguments is removed, as it relied on the <code
        class="member">get_local_mass_matrix</code> function. If in
-       future the user wants to create a mass matrix he needs to use
+       future the user wants to create a mass matrix they need to use
        one of the remaining <code
        class="class">MatrixCreator</code>::<code
        class="member">create_mass_matrix</code> functions that require
index 35b96006353e9ef11c6d1ba0a5d3cc3d5bd125f7..3a91bd3387dd0b61ad47107bc825b6bdf2f0ac1a 100644 (file)
@@ -128,7 +128,7 @@ into the mail and it will be delivered. But that's the extent to which
 you can control things. If you want the receiver to do something
 with the content of the letter, for example return to you data you want
 from over there, then two things need to happen: (i) the receiver needs
-to actually go check whether there is anything in her mailbox, and (ii) if
+to actually go check whether there is anything in their mailbox, and (ii) if
 there is, react appropriately, for example by sending data back. If you
 wait for this return message but the original receiver was distracted
 and not paying attention, then you're out of luck: you'll simply have to
index 0833fa83c57e1d17e408025f910904915f483e3e..b22af1053da5d6338ddcb2264ed7a1b3e8a945ca 100644 (file)
@@ -782,7 +782,7 @@ namespace StandardExceptions
    *
    * We usually leave in these assertions even after we are confident that the
    * implementation is correct, since if someone later changes or extends the
-   * algorithm, these exceptions will indicate to him if he violates
+   * algorithm, these exceptions will indicate to them if they violate
    * assumptions that are used later in the algorithm. Furthermore, it
    * sometimes happens that an algorithm does not work in very rare corner
    * cases. These cases will then be trapped sooner or later by the exception,
index 757ac5bf034921e3c2ff2425a6b6eda2623f0523..f9b0cf03d82179cbced03cd22070ac7f142f594b 100644 (file)
@@ -43,7 +43,7 @@ public:
    * This function returns an identifier for the running program. Currently,
    * the library provides a function returning "JobID".
    *
-   * The user may define a replacement of this function in his source code and
+   * The user may define a replacement of this function in their source code and
    * avoid linking the library version. Unfortunately, this mechanism does not
    * work with shared libraries.
    */
index f1b3257073d61640e6847429ae1692ef4f55139f..dd51e6c4ce3ea335f0a1316e34ccbc59237f6a1a 100644 (file)
@@ -164,7 +164,7 @@ namespace internal
  * renumbering. Using this array, the renumber_dofs() function of the present
  * class is called, which actually performs the change from old DoF indices to
  * the ones given in the array. In some cases, however, a user may want to
- * compute her own renumbering order; in this case, one can allocate an array
+ * compute their own renumbering order; in this case, one can allocate an array
  * with one element per degree of freedom and fill it with the number that the
  * respective degree of freedom shall be assigned. This number may, for
  * example, be obtained by sorting the support points of the degrees of
index 2f12299233723f730d035c0774e4c0b555ead045..e9e9ee5e7db29894c06443f8662f618991b33518 100644 (file)
@@ -133,7 +133,7 @@ public:
    * sizes may be varying, the maximum number of elements per row may be
    * varying, etc. It is simpler not to reproduce the interface of the
    * SparsityPattern class here but rather let the user call whatever function
-   * she desires.
+   * they desire.
    */
   void
   reinit(const size_type n_block_rows, const size_type n_block_columns);
index e76e1fc035c11d363db3e8acc52a7b2ab360bed5..d6b53735b27097bed9c2be77c4e172f1a2a5cfbd 100644 (file)
@@ -137,7 +137,7 @@ namespace PETScWrappers
        * the sizes may be varying, the maximum number of elements per row may
        * be varying, etc. It is simpler not to reproduce the interface of the
        * SparsityPattern class here but rather let the user call whatever
-       * function she desires.
+       * function they desire.
        */
       void
       reinit(const size_type n_block_rows, const size_type n_block_columns);
index 0050f2e8cb591740541cffcec0835ffbf1915749..4ef8a1dad8ebbfa14a39ae021b083c8f73369c14 100644 (file)
@@ -91,7 +91,7 @@ class SparseMatrix;
  * @endcode
  * Now the use of the @p SolverSelector in combination with the @p
  * PreconditionSelector allows the user to select both, the solver and the
- * preconditioner, at the beginning of his program and each time the solver is
+ * preconditioner, at the beginning of their program and each time the solver is
  * started (that is several times e.g. in a nonlinear iteration) this
  * preselected solver and preconditioner is called.
  *
index c0d3a223d5a7e02670fb83d80d7cb61e8c7daebd..68b5d9ed8b13d36fa996eb74c595081c5f532c46 100644 (file)
@@ -80,9 +80,9 @@ DEAL_II_NAMESPACE_OPEN
  *
  *
  * If at some time there exists a new solver "xyz" then the user does not need
- * to change his program. Only in the implementation of the @p SolverSelector
+ * to change their program. Only in the implementation of the @p SolverSelector
  * the calling of this solver has to be added and each user with program lines
- * quoted above only needs to 'set solver = xyz' in his parameter file to get
+ * quoted above only needs to 'set solver = xyz' in their parameter file to get
  * access to that new solver.
  *
  * @author Ralf Hartmann, 1999
index 1107f002ee47aff3fbc8276cde9af5921a6dd26e..ab8d8a3f27d687e952bb770e6bebc02556ce5b0d 100644 (file)
@@ -142,7 +142,7 @@ namespace TrilinosWrappers
      * the sizes may be varying, the maximum number of elements per row may be
      * varying, etc. It is simpler not to reproduce the interface of the @p
      * SparsityPattern class here but rather let the user call whatever
-     * function she desires.
+     * function they desire.
      */
     void
     reinit(const size_type n_block_rows, const size_type n_block_columns);
index 95b77818fb2b6c9f6b8b7ca984f3b2cdd469e194..a244f86700a8bdafe26c55ae39f81d5989a27f3e 100644 (file)
@@ -1300,7 +1300,7 @@ namespace TrilinosWrappers
        * smoothing), but not the way the solver classes expect a
        * preconditioner to work (where one ignores the content in <tt>dst</tt>
        * for the preconditioner application). The user should really know what
-       * she is doing when touching this flag.
+       * they are doing when touching this flag.
        */
       bool nonzero_starting;
     };
index 7c4de48effecb72fa2c38104b44f69dd2ca4e769..7641859ad01cc7c242b28e6818309271e71a0d68 100644 (file)
@@ -7988,7 +7988,7 @@ namespace VectorTools
       {
         // we need to return double as a norm, but mean value is a complex
         // number. Panic and return real-part while warning the user that
-        // he shall never do that.
+        // they shall never do that.
         Assert(
           false,
           ExcMessage(
index 7bebc737820b16a737e300a9a8ec7aa6fab63517..8b02fa3a3daa70821894d73dd74272c9b0d5f211 100644 (file)
@@ -2745,7 +2745,7 @@ private:
  * be possible to call FEValues::reinit() with a tria iterator only; this class
  * makes this possible, but whenever one of the functions of FEValues tries to
  * call any of the functions of this class, an exception will be raised
- * reminding the user that if she wants to use these features, then the FEValues
+ * reminding the user that if they want to use these features, then the FEValues
  * object has to be reinitialized with a cell iterator that allows to extract
  * degree of freedom information.
  *
index a2d8abfbc12044d84f7d0169e0a7f2f0deb473b0..bffc2442bccb717743e3538245daab67fdfe5dae 100644 (file)
@@ -9732,7 +9732,7 @@ namespace internal
         // indicate anisotropic refinemnt cases on faces. all data
         // should be cleared by now, but the information whether we
         // used indices or pointers is still present. reset it now to
-        // enable the user to use whichever he likes later on.
+        // enable the user to use whichever they like later on.
         triangulation.faces->quads.clear_user_data();
 
         // return the list with distorted children
index 1f2cb87356f3f4bb7bb9e74ffde5f625e09d22c1..5681d1141575d2f884f872ae4275a561cc429253 100644 (file)
@@ -246,7 +246,7 @@ namespace TrilinosWrappers
       // Otherwise, we have to check that the two vectors are already of the
       // same size, create an object for the data exchange and then insert all
       // the data. The first assertion is only a check whether the user knows
-      // what she is doing.
+      // what they are doing.
       else
         {
           Assert(omit_zeroing_entries == 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.