aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/autograph/pyct/static_analysis/annos.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/autograph/pyct/static_analysis/annos.py')
-rw-r--r--tensorflow/contrib/autograph/pyct/static_analysis/annos.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/contrib/autograph/pyct/static_analysis/annos.py b/tensorflow/contrib/autograph/pyct/static_analysis/annos.py
index d6d9f7e1a6..b929b35b79 100644
--- a/tensorflow/contrib/autograph/pyct/static_analysis/annos.py
+++ b/tensorflow/contrib/autograph/pyct/static_analysis/annos.py
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
-"""Annotations used by the static analizer."""
+"""Annotations used by the static analyzer."""
from __future__ import absolute_import
from __future__ import division
@@ -28,15 +28,15 @@ class NoValue(Enum):
class NodeAnno(NoValue):
- """Additionnal annotations used by the static analyzer.
+ """Additional annotations used by the static analyzer.
These are in addition to the basic annotations declared in anno.py.
"""
# Symbols
# These flags are boolean.
- IS_LOCAL = 'Symbol is local to the function scope being analized.'
- IS_PARAM = 'Symbol is a parameter to the function being analized.'
+ IS_LOCAL = 'Symbol is local to the function scope being analyzed.'
+ IS_PARAM = 'Symbol is a parameter to the function being analyzed.'
IS_MODIFIED_SINCE_ENTRY = (
'Symbol has been explicitly replaced in the current function scope.')