@@ -32,8 +32,7 @@ class Distribution(abc.ABC):
3232 :param trunc: The truncation points (lower, upper) of the distribution
3333 or ``None`` if the distribution is not truncated.
3434 If the distribution is log-scaled, the truncation limits are expected
35- to be on the same log scale, rather than on the scale of the underlying
36- distribution.
35+ to be on the same log scale.
3736 """
3837
3938 def __init__ (
@@ -280,8 +279,7 @@ class Normal(Distribution):
280279 :param trunc: The truncation limits of the distribution.
281280 ``None`` if the distribution is not truncated.
282281 If the distribution is log-scaled, the truncation limits are expected
283- to be on the same log scale, rather than on the scale of the underlying
284- normal distribution.
282+ to be on the same log scale.
285283 :param log: If ``True``, the distribution is transformed to a log-normal
286284 distribution. If a float, the distribution is transformed to a
287285 log-normal distribution with the given log-base.
@@ -378,8 +376,7 @@ class Laplace(Distribution):
378376 :param trunc: The truncation limits of the distribution.
379377 ``None`` if the distribution is not truncated.
380378 If the distribution is log-scaled, the truncation limits are expected
381- to be on the same log scale, rather than on the scale of the underlying
382- normal distribution.
379+ to be on the same log scale.
383380 :param log: If ``True``, the distribution is transformed to a log-Laplace
384381 distribution. If a float, the distribution is transformed to a
385382 log-Laplace distribution with the given log-base.
0 commit comments