Skip to content

Commit b987f78

Browse files
authored
Merge pull request #3429 from yell/fix-docs
Fix typos in the Developer Guide
2 parents 7d09eed + 8460510 commit b987f78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/source/developer_guide.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ functions. Instead, to access a stateless distribution, you need to call
6161
https://docs.pymc.io/prob\_dists.html#using-pymc-distributions-without-a-model).
6262
6363
With this distinction in mind, we can take a closer look at the
64-
stateless distribution part of pymc3 (see distriution api in `doc
64+
stateless distribution part of pymc3 (see distribution api in `doc
6565
<https://docs.pymc.io/api/distributions.html>`__), which divided into:
6666
6767
- Continuous
@@ -670,7 +670,7 @@ does not edit or rewrite the graph directly.
670670
def __call__(self, array, grad_out=None, extra_vars=None):
671671
...
672672
logp, dlogp = self._theano_function(array)
673-
return
673+
return logp, dlogp
674674
675675
676676
def set_extra_values(self, extra_vars):
@@ -857,7 +857,7 @@ MCMC
857857
The ability for model instance to generate conditional logp and dlogp
858858
function enable one of the unique feature of PyMC3 - `CompoundStep
859859
method <https://docs.pymc.io/notebooks/sampling_compound_step.html>`__.
860-
It is conceptual level it is a Metropolis-within-Gibbs sampler. User can
860+
On a conceptual level it is a Metropolis-within-Gibbs sampler. User can
861861
`specify different sampler of different
862862
RVs <https://docs.pymc.io/notebooks/sampling_compound_step.html?highlight=compoundstep#Specify-compound-steps>`__.
863863
Alternatively, it is implemented as yet another interceptor: the

0 commit comments

Comments
 (0)