aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-04-21 12:08:59 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-04-21 13:28:46 -0700
commit54cda0a2650f6301977793262b9f4c1c607ed5c5 (patch)
tree4d259b41b6d5e0df7f76b6c81227093ea3c1e940
parent8baa229f4f46696c87bfb6f6105a886b3e334c29 (diff)
Fix typo in 'density'.
Change: 153861823
-rw-r--r--tensorflow/contrib/distributions/python/ops/gumbel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/distributions/python/ops/gumbel.py b/tensorflow/contrib/distributions/python/ops/gumbel.py
index db26c2b627..f99a6674e5 100644
--- a/tensorflow/contrib/distributions/python/ops/gumbel.py
+++ b/tensorflow/contrib/distributions/python/ops/gumbel.py
@@ -44,7 +44,7 @@ class _Gumbel(distribution.Distribution):
where `loc = mu` and `scale = sigma`.
- The cumulative densifyt function of this distribution is,
+ The cumulative density function of this distribution is,
```cdf(x; mu, sigma) = exp(-exp(-(x - mu) / sigma))```