diff --git a/pages/docs/manual/latest/function.mdx b/pages/docs/manual/latest/function.mdx index c9bac1eb7..c7de4c2c4 100644 --- a/pages/docs/manual/latest/function.mdx +++ b/pages/docs/manual/latest/function.mdx @@ -124,7 +124,7 @@ You can provide the arguments in **any order**: addCoordinates(~y=6, ~x=5) ``` ```js -addCoordinates(6, 5); +addCoordinates(5, 6); ```