aboutsummaryrefslogtreecommitdiff
path: root/mlir/docs/Tutorials/UnderstandingTheIRStructure.md
diff options
context:
space:
mode:
Diffstat (limited to 'mlir/docs/Tutorials/UnderstandingTheIRStructure.md')
-rw-r--r--mlir/docs/Tutorials/UnderstandingTheIRStructure.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/docs/Tutorials/UnderstandingTheIRStructure.md b/mlir/docs/Tutorials/UnderstandingTheIRStructure.md
index 30b50cb..f7c62f2 100644
--- a/mlir/docs/Tutorials/UnderstandingTheIRStructure.md
+++ b/mlir/docs/Tutorials/UnderstandingTheIRStructure.md
@@ -178,7 +178,7 @@ inside a single block (or a single region), however it is frequently interesting
to traverse the IR in a nested fashion. To this end MLIR exposes the `walk()`
helper on `Operation`, `Block`, and `Region`. This helper takes a single
argument: a callback method that will be invoked for every operation recursively
-nested under the provided entity.
+nested under the provided entity (as well as this initial operation).
```c++
// Recursively traverse all the regions and blocks nested inside the function