diff --git a/src/content/docs/ruleset-engine/rules-language/values.mdx b/src/content/docs/ruleset-engine/rules-language/values.mdx
index 7c403385f580450..7e76a663cacfcec 100644
--- a/src/content/docs/ruleset-engine/rules-language/values.mdx
+++ b/src/content/docs/ruleset-engine/rules-language/values.mdx
@@ -146,7 +146,7 @@ It is not possible to define your own arrays. You can only use arrays returned b
You can only use `[*]` multiple times in the same expression if applied to the same array. Also, you can only use `[*]` in the first argument of a function call.
@@ -217,7 +217,7 @@ It is not possible to define your own maps. You can only use maps returned by fi
## Lists
diff --git a/src/content/partials/ruleset-engine/rules-language-missing-value-behavior.mdx b/src/content/partials/ruleset-engine/rules-language-missing-value-behavior.mdx
index 71939ff1c0a4faa..5adf7c502920aea 100644
--- a/src/content/partials/ruleset-engine/rules-language-missing-value-behavior.mdx
+++ b/src/content/partials/ruleset-engine/rules-language-missing-value-behavior.mdx
@@ -1,11 +1,9 @@
---
-inputParameters: errorDescription
-
+params:
+ - errorDescription
---
-import { Markdown } from "~/components"
-
-Accessing {props.one} produces a "missing value". A missing value has the following behavior:
+Accessing {props.errorDescription} produces a "missing value". A missing value has the following behavior:
-* Any comparison ` ` where `` evaluates to a missing value will evaluate to false.
-* Function calls like `function()`, where `` evaluates to a missing value, will return a missing value in most cases, but the exact behavior can vary per function.
+- Any comparison ` ` where `` evaluates to a missing value will evaluate to false.
+- Function calls like `function()`, where `` evaluates to a missing value, will return a missing value in most cases, but the exact behavior can vary per function.