Skip to content

Commit 9b01be8

Browse files
authored
Merge pull request #678 from stan-dev/fix/spelling-errors
Doc: spelling fixes
2 parents 1361f35 + 17fc4ea commit 9b01be8

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

docsrc/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ API Reference
55
#############
66

77
The following documents the public API of CmdStanPy. It is expected to be stable between versions,
8-
with backwards compatibility between minor versions and deprecation warnings preceeding breaking changes.
8+
with backwards compatibility between minor versions and deprecation warnings preceding breaking changes.
99
There is also the `internal API <internal_api.rst>`__, which is makes no such guarantees.
1010

1111
.. toctree::

docsrc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
.. module:: cmdstanpy
1111
:synopsis: A lightweight pure-Python interface to CmdStan which provides access to the Stan compiler and all inference algorithms.
1212

13-
.. moduleauthor:: Stan Developement Team
13+
.. moduleauthor:: Stan Development Team
1414

1515
CmdStanPy is a lightweight interface to Stan for Python users which
1616
provides the necessary objects and functions to do Bayesian inference

docsrc/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ To install the Xcode command line tools, run the shell command: ``xcode-select -
158158

159159
**Windows** We recommend using the `RTools 4.0 <https://cran.r-project.org/bin/windows/Rtools/rtools40.html>`_ toolchain
160160
which contains a ``g++ 8`` compiler and ``Mingw``, the native Windows equivalent of the GNU-Make utility.
161-
This can be installed allong with CmdStan when you invoke the function :meth:`cmdstanpy.install_cmdstan`
161+
This can be installed along with CmdStan when you invoke the function :meth:`cmdstanpy.install_cmdstan`
162162
with argument ``compiler=True``.
163163

164164

docsrc/users-guide/examples/Run Generated Quantities.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"cell_type": "markdown",
134134
"metadata": {},
135135
"source": [
136-
"We run the `generate_quantities` method on `bernoulli_ppc` using existing sample `fit` as input. The `generate_quantities` method takes the values of `theta` in the `fit` sample as the set of draws from the posterior used to generate the corresponsing `y_rep` quantities of interest.\n",
136+
"We run the `generate_quantities` method on `bernoulli_ppc` using existing sample `fit` as input. The `generate_quantities` method takes the values of `theta` in the `fit` sample as the set of draws from the posterior used to generate the corresponding `y_rep` quantities of interest.\n",
137137
"\n",
138138
"The arguments to the `generate_quantities` method are:\n",
139139
" + `data` - the data used to fit the model\n",
@@ -153,7 +153,7 @@
153153
"cell_type": "markdown",
154154
"metadata": {},
155155
"source": [
156-
"The `generate_quantities` method returns a `CmdStanGQ` object which contains the values for all variables in the generated quantitites block of the program ``bernoulli_ppc.stan``. Unlike the output from the ``sample`` method, it doesn't contain any information on the joint log probability density, sampler state, or parameters or transformed parameter values.\n",
156+
"The `generate_quantities` method returns a `CmdStanGQ` object which contains the values for all variables in the generated quantities block of the program ``bernoulli_ppc.stan``. Unlike the output from the ``sample`` method, it doesn't contain any information on the joint log probability density, sampler state, or parameters or transformed parameter values.\n",
157157
"\n",
158158
"In this example, each draw consists of the N-length array of replicate of the `bernoulli` model's input variable `y`, which is an N-length array of Bernoulli outcomes."
159159
]

docsrc/users-guide/examples/VI as Sampler Inits.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
"cell_type": "markdown",
129129
"metadata": {},
130130
"source": [
131-
"Using the default random parameter initializations, we need to run more warmup iteratons. If we only run 75 warmup iterations with random inits, the result fails to estimate `sigma` correctly. It is necessary to run the model with at least 150 warmup iterations to produce a good set of estimates."
131+
"Using the default random parameter initializations, we need to run more warmup iterations. If we only run 75 warmup iterations with random inits, the result fails to estimate `sigma` correctly. It is necessary to run the model with at least 150 warmup iterations to produce a good set of estimates."
132132
]
133133
},
134134
{

docsrc/users-guide/overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ CmdStanPy is designed to support the development, testing, and deployment of a S
3131
CmdStanPy manages the Stan program files, data files, and CmdStan output files.
3232
By default, output files are written to a temporary filesystem which persists
3333
throughout the session. This is appropriate behavior during model development
34-
because it allows the user to test many models without filsystem clutter or worse.
34+
because it allows the user to test many models without filesystem clutter or worse.
3535
Once deployed into production,
3636
the user can specify the output directory for the CmdStan outputs.
3737

0 commit comments

Comments
 (0)