Skip to content

Commit 3850b8b

Browse files
committed
Change comment for discrete RVs
1 parent 42436d6 commit 3850b8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc/distributions/truncated.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ def truncated_logcdf(op, value, *inputs, **kwargs):
360360
base_rv_op = op.base_rv_op
361361
logcdf = _logcdf(base_rv_op, value, *rv_inputs, **kwargs)
362362

363-
# For left truncated RVs, we don't want to include the lower bound in the
363+
# For left truncated discrete RVs, we don't want to include the lower bound in the
364364
# normalization term
365365
lower_value = lower - 1 if base_rv_op.dtype.startswith("int") else lower
366366
lower_logcdf = _logcdf(base_rv_op, lower_value, *rv_inputs, **kwargs)

0 commit comments

Comments
 (0)