diff --git a/functions/math.xml b/functions/math.xml
index b1ed38ec82..ec92c56926 100644
--- a/functions/math.xml
+++ b/functions/math.xml
@@ -714,7 +714,7 @@ $binary = base_convert ($hexadecimal, 16, 2);
max was range. To
get the same results in these versions the short example should
be mt_rand (5, 11) to get a random number
- between 5 und 15.
+ between 5 and 15.
@@ -942,7 +942,7 @@ $randval = mt_rand();
returns a pseudo-random value between 0 and
RAND_MAX. If you want a random number
between 5 and 15 (inclusive), for example, use rand (5,
- 15).
+ 15).
Remember to seed the random number generator before use with
@@ -954,7 +954,7 @@ $randval = mt_rand();
max was range. To
get the same results in these versions the short example should
be rand (5, 11) to get a random number
- between 5 und 15.
+ between 5 and 15.