diff --git a/doc/manual/expressions/builtins.xml b/doc/manual/expressions/builtins.xml
index 229a73fb1..86c36da1b 100644
--- a/doc/manual/expressions/builtins.xml
+++ b/doc/manual/expressions/builtins.xml
@@ -210,42 +210,6 @@ if builtins ? getEnv then builtins.getEnv "PATH" else ""
- builtins.match
- regex str
-
- Returns a list if the extended
- POSIX regular expression regex
- matches str precisely, otherwise returns
- null. Each item in the list is a regex group.
-
-
-builtins.match "ab" "abc"
-
-
-Evaluates to null.
-
-
-builtins.match "abc" "abc"
-
-
-Evaluates to [ ].
-
-
-builtins.match "a(b)(c)" "abc"
-
-
-Evaluates to [ "b" "c" ].
-
-
-builtins.match "[[:space:]]+([[:upper:]]+)[[:space:]]+" " FOO "
-
-
-Evaluates to [ "foo" ].
-
-
-
-
builtins.elem
x xs
@@ -726,6 +690,42 @@ map (x: "foo" + x) [ "bar" "bla" "abc" ]
+ builtins.match
+ regex str
+
+ Returns a list if the extended
+ POSIX regular expression regex
+ matches str precisely, otherwise returns
+ null. Each item in the list is a regex group.
+
+
+builtins.match "ab" "abc"
+
+
+Evaluates to null.
+
+
+builtins.match "abc" "abc"
+
+
+Evaluates to [ ].
+
+
+builtins.match "a(b)(c)" "abc"
+
+
+Evaluates to [ "b" "c" ].
+
+
+builtins.match "[[:space:]]+([[:upper:]]+)[[:space:]]+" " FOO "
+
+
+Evaluates to [ "foo" ].
+
+
+
+
builtins.mul
e1 e2