Skip to content

Commit 668be9c

Browse files
committed
typos
1 parent 5caba5a commit 668be9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/rfcs/PipelineComposition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ User is adding pipelines into graph via `registerPipeline` function, each pipeli
3535
* `jumpTargets` - List of the names of pipelines to which we can dynamically jump after current pipeline.
3636
* `populateFunc` - Callback to populate pipeline with passes.
3737
38-
After user populated the graph object they must call `createPipelineSchedule` metdod to compile the resulted graph into runnable schedule.
38+
After user populated the graph object they must call `createPipelineSchedule` method to compile the resulted graph into runnable schedule.
3939
`createPipelineSchedule` will build a DAG from pipelines dependencies provided by user, and will try to get linear execution order to satify these dependencies.
4040
4141
If two pipelines doesn't have direct and indirect dependencies, order in which they will be executed is not specified, but stable.
@@ -70,4 +70,4 @@ builtin.module {pipeline.jump_target="Foo"} {
7070
Passes inside pipeline can set this attribute to indicate they want compilatin flow to jump to the specific point.
7171
After current pipeline is finished, runtime will check if module object have attribute set and if it does, jump to the selected pipeline and clear the attribute.
7272

73-
Setting attribute to the value, which wasnt in `jumpTargets` for the current pipeline will result in error and abort the compilation flow.
73+
Setting attribute to the value, which wasnt in `jumpTargets` for the current pipeline will result in error and abort the compilation flow.

0 commit comments

Comments
 (0)