You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ww...@apache.org on 2020/11/16 04:37:39 UTC

[incubator-tvm] 01/01: [DOC] Fix typo

This is an automated email from the ASF dual-hosted git repository.

wweic pushed a commit to branch wweic-typo
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git

commit f469217f09947a8847f3f3dbab45c7f1cf1e05ea
Author: Wei Chen <ip...@gmail.com>
AuthorDate: Sun Nov 15 20:37:08 2020 -0800

    [DOC] Fix typo
---
 python/tvm/contrib/utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/tvm/contrib/utils.py b/python/tvm/contrib/utils.py
index f3397ce..6451896 100644
--- a/python/tvm/contrib/utils.py
+++ b/python/tvm/contrib/utils.py
@@ -112,7 +112,7 @@ class TempDirectory(object):
             self.TEMPDIRS.add(self.temp_dir)
 
     def remove(self):
-        """Remote the tmp dir"""
+        """Remove the tmp dir"""
         if self.temp_dir:
             if not self._created_with_keep_for_debug:
                 shutil.rmtree(self.temp_dir, ignore_errors=True)