Skip to content

Commit cf6b46b

Browse files
authored
some spell checking on the docs (#3285)
1 parent ee492f4 commit cf6b46b

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Docs/Migration/Migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ perform the search and replace.
9191
### Step 5
9292

9393
AMReX `migration/5-namespace` branch should be used in this step.
94-
BoxLib has a `BoxLib` namspace, but most of BoxLib classes are not in
94+
BoxLib has a `BoxLib` namespace, but most of BoxLib classes are not in
9595
the namespace. In AMReX, all classes and functions have been moved
9696
into the `amrex` namespace. In this step, you can use
9797
`Tools/Migration/step-5-amrex-namespace/amrex-namespace.sh` to replace

Docs/sphinx_documentation/source/AMReX_Profiling_Tools.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ Profiling Options
435435

436436
AMReX's communication algorithms are often regions of code that increase in wall clock time
437437
when the application is load imbalanced, due to the MPI_Wait calls in these functions.
438-
To better understand if this is occuring and by how much, you can turn on an AMReX timed
438+
To better understand if this is occurring and by how much, you can turn on an AMReX timed
439439
synchronization with the runtime variable: ``amrex.use_profiler_syncs=1`` This adds named timers
440440
beginning with ``SyncBeforeComms`` immediately prior to the start of the FillBoundary,
441441
ParallelCopy and particle Redistribute functions, isolating any prior load imbalance to that timer

Docs/sphinx_documentation/source/Basics.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ They are briefly introduced in the table below.
380380
| | | after the executable. |
381381
+-------------------------------------------+--------+-------------------------------------------+
382382
| ``amrex:get_command_argument(int n)`` | String | Returns the n-th argument after |
383-
| | | the exectuable. |
383+
| | | the executable. |
384384
+-------------------------------------------+--------+-------------------------------------------+
385385

386386

Docs/sphinx_documentation/source/BuildingAMReX.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ The list of available options is reported in the :ref:`table <tab:cmakevar>` bel
502502
+------------------------------+-------------------------------------------------+-------------------------+-----------------------+
503503
| AMReX_EXPORT_DYNAMIC | Enable backtrace on macOS | NO (unless Darwin) | YES, NO |
504504
+------------------------------+-------------------------------------------------+-------------------------+-----------------------+
505-
| AMReX_SENSEI | Enable the SENSEI in situ infrastucture | NO | YES, NO |
505+
| AMReX_SENSEI | Enable the SENSEI in situ infrastructure | NO | YES, NO |
506506
+------------------------------+-------------------------------------------------+-------------------------+-----------------------+
507507
| AMReX_NO_SENSEI_AMR_INST | Disables the instrumentation in amrex::Amr | NO | YES, NO |
508508
+------------------------------+-------------------------------------------------+-------------------------+-----------------------+
@@ -744,7 +744,7 @@ We do not officially support AMReX on Windows, and many of us do not have access
744744
machines. However, we believe there are no fundamental issues for it to work on Windows.
745745

746746
(1) AMReX mostly uses standard C++17.
747-
We run continous integration tests on Windows with MSVC and Clang compilers.
747+
We run continuous integration tests on Windows with MSVC and Clang compilers.
748748

749749
(2) We use POSIX signal handling when floating point exceptions, segmentation faults, etc. happen.
750750
This capability is not supported on Windows.

Docs/sphinx_documentation/source/LinearSolvers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ Some of the linear solvers support curvilinear coordinates including 1D
400400
spherical and 2d cylindrical :math:`(r,z)`. In those cases, the
401401
divergence operator has extra metric terms. If one does not want the
402402
solver to include the metric terms because they have been handled in
403-
other ways, one can turn them off with a setter funtion. For
403+
other ways, one can turn them off with a setter function. For
404404
the cell-centered linear solvers `MLABecLaplacian` and `MLPoisson`, one
405405
can call :cpp:`setMetricTerm(bool)` with :cpp:`false`
406406
on the :cpp:`LPInfo` object passed to the constructor of linear

Docs/sphinx_documentation/source/SUNDIALS_top.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SUNDIALS
44
========
55

66
SUNDIALS stands for **SU**\ite of **N**\onlinear and **DI**\fferential/**AL**\gebraic
7-
equation **S**\olvers. It consistes of the following six solvers:
7+
equation **S**\olvers. It consists of the following six solvers:
88

99
- CVODE, for initial value problems for ODE systems
1010

Docs/sphinx_documentation/source/Visualization.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ Amrvis. Additional information is contained in the document
9494
The settings for Amrvis are saved in the configuration file ``.amrvis.defaults`` in
9595
your home directory. A default version of this file is available in the parent directory of the
9696
Amrvis repo. Run the command ``cp Amrvis/amrvis.defaults ~/.amrvis.defaults`` to
97-
copy it to your home directory. A color pallete is also available in the Amrvis directory as a file
97+
copy it to your home directory. A color palette is also available in the Amrvis directory as a file
9898
named ``Palette``.
99-
To configure Amrvis to use this pallete you can open the ``.amrvis.defaults`` file
99+
To configure Amrvis to use this palette you can open the ``.amrvis.defaults`` file
100100
in your home directory and edit the line containing ``palette`` to point to the
101101
location of this file. For example,
102102

0 commit comments

Comments
 (0)