From 20aeebdec093db0597eb7b3ccdd20c40a0a3ccfa Mon Sep 17 00:00:00 2001 From: Neo Chien Date: Thu, 8 Jun 2023 13:06:10 +0800 Subject: [PATCH] [#14992][DOC][TUTORIAL] Fix typo for the 'Making your Hardware Accelerator TVM-ready with UMA' (#15055) [#14992][DOC][TUTORIAL]Fix typo for the 'Making your Hardware Accelerator TVM-ready with UMA' --- gallery/tutorial/uma.py | 2 +- src/relay/printer/relay_text_printer.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gallery/tutorial/uma.py b/gallery/tutorial/uma.py index 5380aa116fcb..a62a8604535d 100644 --- a/gallery/tutorial/uma.py +++ b/gallery/tutorial/uma.py @@ -79,7 +79,7 @@ # ################################################################################ -# uma_cli.py generates these files in the directory ``vanilla_accelerator`` which we are going to revist. +# uma_cli.py generates these files in the directory ``vanilla_accelerator`` which we are going to revisit. # # .. code-block:: bash # diff --git a/src/relay/printer/relay_text_printer.cc b/src/relay/printer/relay_text_printer.cc index f6a5b2926aba..618e8fe138d8 100644 --- a/src/relay/printer/relay_text_printer.cc +++ b/src/relay/printer/relay_text_printer.cc @@ -555,7 +555,7 @@ Doc RelayTextPrinter::VisitExpr_(const MatchNode* op) { Doc clause_doc; clause_doc << PrintPattern(clause->lhs, false) << " => "; Doc rhs_doc = PrintScope(clause->rhs); - // TODO(@jroesch): This is unsound right now, and we need to revist it. + // TODO(@jroesch): This is unsound right now, and we need to revisit it. // if (clause->rhs.as()) { // only add braces if there are multiple lines on the rhs rhs_doc = Doc::Brace("{", rhs_doc, "}");