aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/util/lazy_loader.py
diff options
context:
space:
mode:
authorGravatar Andreas Solleder <asol@num42.de>2017-05-20 06:26:40 +0200
committerGravatar Andreas Solleder <asol@num42.de>2017-05-20 06:26:40 +0200
commit1f6ed06221949c5a9037f2d81f30208d23f3afc6 (patch)
tree599b7dfd5b08b7d368bcda72207800c9ff5032c8 /tensorflow/python/util/lazy_loader.py
parentf2a46993e39abbf8bfa2db1d40d8983908d6a6bc (diff)
fix: typos using misspell
fix: typos This PR is part of a campaign to fix a lot of typos on github! You can see the progress on https://github.com/fixTypos/fix_typos/ https://github.com/client9/misspell
Diffstat (limited to 'tensorflow/python/util/lazy_loader.py')
-rw-r--r--tensorflow/python/util/lazy_loader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/util/lazy_loader.py b/tensorflow/python/util/lazy_loader.py
index 34308ff931..6d2622b1c0 100644
--- a/tensorflow/python/util/lazy_loader.py
+++ b/tensorflow/python/util/lazy_loader.py
@@ -24,7 +24,7 @@ import types
class LazyLoader(types.ModuleType):
- """Lazily import a module, mainly to avoid pulling in large dependancies.
+ """Lazily import a module, mainly to avoid pulling in large dependencies.
`contrib`, and `ffmpeg` are examples of modules that are large and not always
needed, and this allows them to only be loaded when they are used.