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:38 UTC

[incubator-tvm] branch wweic-typo created (now f469217)

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

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


      at f469217  [DOC] Fix typo

This branch includes the following new commits:

     new f469217  [DOC] Fix typo

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by ww...@apache.org.
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)