diff --git a/utils/pas2js/docs/translation.html b/utils/pas2js/docs/translation.html
index 3d9305e669..2a93965ebb 100644
--- a/utils/pas2js/docs/translation.html
+++ b/utils/pas2js/docs/translation.html
@@ -2506,7 +2506,10 @@ function(){
The procedure modifier varargs
Appending the
varargs modifier to a procedure allows to pass arbitrary
- more parameters to a function. To access these non typed arguments use
+ more parameters to a function. By default these parameters are untyped, i.e.
+ any type fits. Alternatively you can use
varargs of aType to allow
+ only specific types.
+ To access these arguments use
either
JSArguments from unit JS or an
asm..end block.