From 5334fa33273df6601f58e38ca0cf5be33f4a5104 Mon Sep 17 00:00:00 2001 From: cchung100m Date: Wed, 7 Jun 2023 22:26:51 +0800 Subject: [PATCH] [#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, "}");