Skip to content

Commit

Permalink
Fix the cpp lint problem
Browse files Browse the repository at this point in the history
  • Loading branch information
yelite committed Jul 27, 2022
1 parent de71723 commit d2f328c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/tvm/script/printer/doc.h
Original file line number Diff line number Diff line change
Expand Up @@ -844,8 +844,8 @@ class WhileDoc : public StmtDoc {
* \brief Doc that represents for statement.
*
* Example:
* for <lhs> in <rhs>:
* <body...>
* for 'lhs' in 'rhs':
* 'body...'
*
* \sa ForDoc
*/
Expand Down Expand Up @@ -891,8 +891,8 @@ class ForDoc : public StmtDoc {
*
* Specificially, this means the with statment in Python:
*
* with <rhs> as <lhs>:
* <body...>
* with 'rhs' as 'lhs':
* 'body...'
*
* \sa ScopeDoc
*/
Expand Down

0 comments on commit d2f328c

Please sign in to comment.