diff --git a/chainer/functions/activation/clipped_relu.py b/chainer/functions/activation/clipped_relu.py index 0dadd69d6aeb..23669d749304 100644 --- a/chainer/functions/activation/clipped_relu.py +++ b/chainer/functions/activation/clipped_relu.py @@ -54,7 +54,7 @@ def clipped_relu(x, z=20.0): For a clipping value :math:`z(>0)`, it computes - .. math::`ClippedReLU(x, z) = \\min(\\max(0, x), z)`. + .. math:: \\text{ClippedReLU}(x, z) = \\min(\\max(0, x), z). Args: x (:class:`~chainer.Variable` or :class:`numpy.ndarray` or \