Skip to content

Commit 3c10f04

Browse files
authored
Remove space between "params:" and parameter names (#5175)
Signed-off-by: Deepyaman Datta <deepyaman.datta@utexas.edu>
1 parent 6a94c02 commit 3c10f04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/build/namespaces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def create_pipeline(**kwargs) -> Pipeline:
1616
existing_pipeline, # Name of the existing Pipeline object
1717
inputs = {"old_input_df_name" : "new_input_df_name"}, # Mapping existing Pipeline input to new input
1818
outputs = {"old_output_df_name" : "new_output_df_name"}, # Mapping existing Pipeline output to new output
19-
parameters = {"params: model_options": "params: new_model_options"}, # Updating parameters
19+
parameters = {"params:model_options": "params:new_model_options"}, # Updating parameters
2020
)
2121
```
2222

0 commit comments

Comments
 (0)