From 0810d1eee3a9e7580fce74039920c4093518030e Mon Sep 17 00:00:00 2001 From: Andrew Rosen Date: Thu, 8 Jun 2023 16:08:16 -0700 Subject: [PATCH] Fix typo --- docs/tutorials/8-fireworks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/8-fireworks.md b/docs/tutorials/8-fireworks.md index d88dd6f1..981f8c5d 100644 --- a/docs/tutorials/8-fireworks.md +++ b/docs/tutorials/8-fireworks.md @@ -87,7 +87,7 @@ for job, _ in flow.iterflow(): job.update_config({"manager_config": {"_fworker": "fworker2"}}) ``` -To make the process a bit easier, the `{obj}update_config()` function can also be applied directly to a flow in conjunction with a filter. The logic above can then be simplified to: +To make the process a bit easier, the {obj}`update_config()` function can also be applied directly to a flow in conjunction with a filter. The logic above can then be simplified to: ```python flow.update_config({"manager_config": {"_fworker": "fworker1"}}, name_filter="job1")