aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/constrained_optimization
diff options
context:
space:
mode:
authorGravatar Brett Koonce <koonce@hello.com>2018-04-28 20:05:22 -0700
committerGravatar Brett Koonce <koonce@hello.com>2018-08-09 15:09:04 -0700
commit27d2a4a7806813beaff65668e6ab312b4ee30c68 (patch)
tree72d06d72b3eb438dbbcce7ba07db5d3e0f9be4b1 /tensorflow/contrib/constrained_optimization
parent874437315670566611808674ec5a0741ae557314 (diff)
contrib: minor spelling tweaks
Diffstat (limited to 'tensorflow/contrib/constrained_optimization')
-rw-r--r--tensorflow/contrib/constrained_optimization/python/candidates.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/constrained_optimization/python/candidates.py b/tensorflow/contrib/constrained_optimization/python/candidates.py
index ac86a6741b..66d7ebed74 100644
--- a/tensorflow/contrib/constrained_optimization/python/candidates.py
+++ b/tensorflow/contrib/constrained_optimization/python/candidates.py
@@ -204,7 +204,7 @@ def find_best_candidate_distribution(objective_vector,
assert best_pp is not None
# Throughout this loop, a maximum_violation of "lower" is not achievable,
- # but a maximum_violation of "upper" is achiveable.
+ # but a maximum_violation of "upper" is achievable.
while True:
middle = 0.5 * (lower + upper)
if (middle - lower <= epsilon) or (upper - middle <= epsilon):