diff --git a/docs/source/quickinstall.rst b/docs/source/quickinstall.rst index 726611ac5..e416b3efd 100644 --- a/docs/source/quickinstall.rst +++ b/docs/source/quickinstall.rst @@ -49,12 +49,11 @@ Installing on Linux/Mac/Windows with Docker OpenMC can be easily deployed using `Docker `_ on any Windows, Mac, or Linux system. With Docker running, execute the following command in the shell to download and run a `Docker image`_ with the most recent release -of OpenMC from `DockerHub `_ called -``openmc/openmc:v0.10.0``: +of OpenMC from `DockerHub `_: .. code-block:: sh - docker run openmc/openmc:v0.10.0 + docker run openmc/openmc:latest This will take several minutes to run depending on your internet download speed. The command will place you in an interactive shell running in a `Docker diff --git a/docs/source/releasenotes/0.12.1.rst b/docs/source/releasenotes/0.12.1.rst index b30c6f6bb..d8f67cf33 100644 --- a/docs/source/releasenotes/0.12.1.rst +++ b/docs/source/releasenotes/0.12.1.rst @@ -78,7 +78,7 @@ Bug Fixes - `Fix bug related to logging of particle restarts `_ - `Examine if region exists before removing redundant surfaces `_ - `Fix plotting of individual universe levels `_ -- `Mixed materials should inhereit depletable attribute `_ +- `Mixed materials should inherit depletable attribute `_ - `Fix typo in energy units in dose coefficients `_ - `Fixes for large tally cases `_ - `Fix verification of volume calculation results `_ diff --git a/docs/source/usersguide/install.rst b/docs/source/usersguide/install.rst index ba3654612..1a038d084 100644 --- a/docs/source/usersguide/install.rst +++ b/docs/source/usersguide/install.rst @@ -49,12 +49,11 @@ Installing on Linux/Mac/Windows with Docker OpenMC can be easily deployed using `Docker `_ on any Windows, Mac, or Linux system. With Docker running, execute the following command in the shell to download and run a `Docker image`_ with the most recent -release of OpenMC from `DockerHub `_ called -``openmc/openmc:v0.10.0``: +release of OpenMC from `DockerHub `_: .. code-block:: sh - docker run openmc/openmc:v0.10.0 + docker run openmc/openmc:latest This will take several minutes to run depending on your internet download speed. The command will place you in an interactive shell running in a `Docker diff --git a/docs/source/usersguide/settings.rst b/docs/source/usersguide/settings.rst index 84fc6ff47..39a011ec7 100644 --- a/docs/source/usersguide/settings.rst +++ b/docs/source/usersguide/settings.rst @@ -251,7 +251,7 @@ For a full list of all classes related to statistical distributions, see File-based Sources ------------------ -OpenMC can use a pregenerated HDF5 source file by specfying the ``filename`` +OpenMC can use a pregenerated HDF5 source file by specifying the ``filename`` argument to :class:`openmc.Source`:: settings.source = openmc.Source(filename='source.h5') @@ -262,8 +262,9 @@ source file can be manually generated with the :func:`openmc.write_source_file` function. This is particularly useful for coupling OpenMC with another program that generates a source to be used in OpenMC. -A source file based on particles that cross one or surfaces can be generated -during a simulation using the :attr:`Settings.surf_source_write` attribute:: +A source file based on particles that cross one or more surfaces can be +generated during a simulation using the :attr:`Settings.surf_source_write` +attribute:: settings.surf_source_write = { 'surfaces_ids': [1, 2, 3],