diff --git a/website/src/pages/functions/value-modifiers.mdx b/website/src/pages/functions/value-modifiers.mdx index 94372e75..19843e10 100644 --- a/website/src/pages/functions/value-modifiers.mdx +++ b/website/src/pages/functions/value-modifiers.mdx @@ -82,18 +82,7 @@ To modify a parameter value, you can either: ")).log()`} /> -- Modify _all_ numeral params: - - ").log()`} /> - -Which of these 3 ways to use strongly depends on the context! -Note that the order of chaining param functions also matters! -In the last example, the `room` value would not have changed if it was applied later: - -").room(.1).log()`} /> - -This shows how the execution of the chained functions goes from left to right. -In this case, the `.add` will only modify what's on the left side. +Remember the execution of the chained functions goes from left to right. # Operators