aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/util/lazy_loader.py
diff options
context:
space:
mode:
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.