From 529d7720214a49aa650a01749a72ed522ae70d8e Mon Sep 17 00:00:00 2001 From: Katherine Wu Date: Wed, 3 Apr 2019 15:13:31 -0700 Subject: [PATCH] Fix typo in HIDDEN_ATTRIBUTE comment. PiperOrigin-RevId: 241815406 --- tensorflow/python/util/deprecation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/util/deprecation.py b/tensorflow/python/util/deprecation.py index 56d1d606e7c..5f93bb971ef 100644 --- a/tensorflow/python/util/deprecation.py +++ b/tensorflow/python/util/deprecation.py @@ -626,5 +626,5 @@ class _HiddenTfApiAttribute(object): # For example, this is used in V2 Estimator to hide the deprecated # export_savedmodel method: # class EstimatorV2(Estimator): -# exprot_savedmodel = deprecation.HIDDEN_ATTRIBUTE +# export_savedmodel = deprecation.HIDDEN_ATTRIBUTE HIDDEN_ATTRIBUTE = _HiddenTfApiAttribute()