From: Stefano Zampini <stefano.zampini@gmail.com>
Date: Tue, 17 Jan 2023 14:41:22 +0000 (+0300)
Subject: fix mispells
X-Git-Tag: v9.5.0-rc1~600^2
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc0dcfa77f423cec957b1502b6633d1816dd935f;p=dealii.git

fix mispells
---

diff --git a/cmake/configure/configure_20_petsc.cmake b/cmake/configure/configure_20_petsc.cmake
index 562a3917ca..31564affb3 100644
--- a/cmake/configure/configure_20_petsc.cmake
+++ b/cmake/configure/configure_20_petsc.cmake
@@ -44,7 +44,7 @@ macro(feature_petsc_find_external var)
     endif()
 
     #
-    # Petsc has to be configured with the same MPI configuration as
+    # PETSc has to be configured with the same MPI configuration as
     # deal.II.
     #
     # petscconf.h should export PETSC_HAVE_MPIUNI 1 in case mpi support is
@@ -68,7 +68,7 @@ macro(feature_petsc_find_external var)
     endif()
 
     #
-    # Petsc has to be configured with the same number of bits for indices as
+    # PETSc has to be configured with the same number of bits for indices as
     # deal.II.
     #
     # petscconf.h should export PETSC_WITH_64BIT_INDICES 1 in case 64bits
diff --git a/examples/step-44/doc/results.dox b/examples/step-44/doc/results.dox
index 2cf55417d3..2a2954e354 100644
--- a/examples/step-44/doc/results.dox
+++ b/examples/step-44/doc/results.dox
@@ -278,7 +278,7 @@ There are a number of obvious extensions for this work:
 - The program has been developed for solving problems on single-node
   multicore machines. With a little effort, the program could be
   extended to a large-scale computing environment through the use of
-  Petsc or Trilinos, using a similar technique to that demonstrated in
+  PETSc or Trilinos, using a similar technique to that demonstrated in
   step-40. This would mostly involve changes to the setup, assembly,
   <code>PointHistory</code> and linear solver routines.
 - As this program assumes quasi-static equilibrium, extensions to
diff --git a/include/deal.II/lac/petsc_vector.h b/include/deal.II/lac/petsc_vector.h
index bad7777a8c..55cc9ac25e 100644
--- a/include/deal.II/lac/petsc_vector.h
+++ b/include/deal.II/lac/petsc_vector.h
@@ -478,7 +478,7 @@ namespace PETScWrappers
       // in this case a) again takes up a whole lot of memory on the heap,
       // and b) is totally dumb since its content would simply be the
       // sequence 0,1,2,3,...,n. the best of all worlds would probably be a
-      // function in Petsc that would take a pointer to an array of
+      // function in PETSc that would take a pointer to an array of
       // PetscScalar values and simply copy n elements verbatim into the
       // vector...
       for (size_type i = 0; i < v.size(); ++i)
diff --git a/include/deal.II/matrix_free/vector_access_internal.h b/include/deal.II/matrix_free/vector_access_internal.h
index 80b1161d49..92ad7e59d6 100644
--- a/include/deal.II/matrix_free/vector_access_internal.h
+++ b/include/deal.II/matrix_free/vector_access_internal.h
@@ -37,7 +37,7 @@ namespace internal
   // below we use type-traits from matrix-free/type_traits.h
 
   // access to generic const vectors that have operator ().
-  // FIXME: this is wrong for Trilinos/Petsc MPI vectors
+  // FIXME: this is wrong for Trilinos/PETSc MPI vectors
   // where we should first do Partitioner::local_to_global()
   template <
     typename VectorType,
@@ -51,7 +51,7 @@ namespace internal
 
 
   // access to generic non-const vectors that have operator ().
-  // FIXME: this is wrong for Trilinos/Petsc MPI vectors
+  // FIXME: this is wrong for Trilinos/PETSc MPI vectors
   // where we should first do Partitioner::local_to_global()
   template <
     typename VectorType,