Skip to content

Commit e4c775b

Browse files
authored
Fix simple typo: varibles -> variables (#3803)
Closes #3802
1 parent 6dda104 commit e4c775b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymc3/tests/test_examples.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def test_disaster_model(self):
179179
with model:
180180
# Initial values for stochastic nodes
181181
start = {'early_mean': 2., 'late_mean': 3.}
182-
# Use slice sampler for means (other varibles auto-selected)
182+
# Use slice sampler for means (other variables auto-selected)
183183
step = pm.Slice([model.early_mean_log__, model.late_mean_log__])
184184
tr = pm.sample(500, tune=50, start=start, step=step, chains=2)
185185
pm.summary(tr)
@@ -189,7 +189,7 @@ def test_disaster_model_missing(self):
189189
with model:
190190
# Initial values for stochastic nodes
191191
start = {'early_mean': 2., 'late_mean': 3.}
192-
# Use slice sampler for means (other varibles auto-selected)
192+
# Use slice sampler for means (other variables auto-selected)
193193
step = pm.Slice([model.early_mean_log__, model.late_mean_log__])
194194
tr = pm.sample(500, tune=50, start=start, step=step, chains=2)
195195
pm.summary(tr)

0 commit comments

Comments
 (0)