diff --git a/docs/source/contribution/documentation_contributor_guidelines.md b/docs/source/contribution/documentation_contributor_guidelines.md index 43dfe9bec8..dad9c29916 100644 --- a/docs/source/contribution/documentation_contributor_guidelines.md +++ b/docs/source/contribution/documentation_contributor_guidelines.md @@ -2,7 +2,7 @@ You are welcome to contribute to the Kedro documentation if you find something incorrect or missing, or have other improvement suggestions. -You can tell us what we should change or by make a PR to change it yourself. +You can tell us what we should change or make a PR to change it yourself. Before you contribute any documentation changes, please read this page so you are familiar with the [Kedro documentation style guidelines](#kedro-documentation-style-guide). diff --git a/docs/source/nodes_and_pipelines/modular_pipelines.md b/docs/source/nodes_and_pipelines/modular_pipelines.md index b4cfe811ca..cab2a93a1a 100644 --- a/docs/source/nodes_and_pipelines/modular_pipelines.md +++ b/docs/source/nodes_and_pipelines/modular_pipelines.md @@ -155,7 +155,7 @@ The wrapper allows us to provide a mapping and fix this disconnect. ```python from kedro.pipeline.modular_pipeline import pipeline -prep_pipeline = pipeline(pipe=cook_pipeline, inputs={"food": "grilled_veg"}) +prep_pipeline = pipeline(pipe=cook_pipeline, outputs={"grilled_veg": "food"}) meal_pipeline = prep_pipeline + lunch_pipeline ```