From 635d026f7f6376299b52145257c20822075ee33b Mon Sep 17 00:00:00 2001 From: gharbi-mohamed-dev <133573945+gharbi-mohamed-dev@users.noreply.github.com> Date: Thu, 9 Jan 2025 13:05:33 +0100 Subject: [PATCH] docs: fix typo (#10894) --- .../book/app/learn/fundamentals/workflows/conditions/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/apps/book/app/learn/fundamentals/workflows/conditions/page.mdx b/www/apps/book/app/learn/fundamentals/workflows/conditions/page.mdx index dced1e384d1c7..2398d441cb7b9 100644 --- a/www/apps/book/app/learn/fundamentals/workflows/conditions/page.mdx +++ b/www/apps/book/app/learn/fundamentals/workflows/conditions/page.mdx @@ -12,7 +12,7 @@ Medusa creates an internal representation of the workflow definition you pass to So, you can't use an if-condition that checks a variable's value, as the condition will be evaluated when Medusa creates the internal representation of the workflow, rather than during execution. -Instead, use when-then from the Workflows SDK. It allows you to perform steps in a workflow only if a condition that you specify is satisified. +Instead, use when-then from the Workflows SDK. It allows you to perform steps in a workflow only if a condition that you specify is satisfied. ---