diff --git a/README.md b/README.md index 4e3444fe04c34ceb26d5862483ff97aa2960aeb6..90759e1d480d60cecba0cf7f0dbfc892d9561b12 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[](https://travis-ci.com/dmlc/tvm) +[](https://travis-ci.com/dmlc/tvm) [](./LICENSE) [Installation](docs/how_to/install.md) | diff --git a/include/tvm/ir_visitor.h b/include/tvm/ir_visitor.h index d1ebdb25df1f34e69fb12ae626abcbdee374f487..da72f19ed046b8e9b08d2ba7b212684ddb48de86 100644 --- a/include/tvm/ir_visitor.h +++ b/include/tvm/ir_visitor.h @@ -21,7 +21,7 @@ namespace ir { * \sa ExprFunctor, StmtFunctor, PostOrderVisit * * \note If you need to return values during Visit: - * - If it is mutaion of the IR, use IRMutator + * - If it is mutation of the IR, use IRMutator * - If you want to return other things, consider use ExprFunctor/StmtFunctor * - Watch out for possible bug pattern if you use IRVisitor to simulate returns. * @@ -126,7 +126,7 @@ class IRVisitor { /*! * \brief recursively visit the ir in post DFS order node, apply fvisit - * Each node is ganranteed to be visited only once. + * Each node is guaranteed to be visited only once. * \param node The ir to be visited. * \param fvisit The visitor function to be applied. */