diff --git a/utils/pas2js/docs/translation.html b/utils/pas2js/docs/translation.html
index 5431a8b1a8..0bf82a0456 100644
--- a/utils/pas2js/docs/translation.html
+++ b/utils/pas2js/docs/translation.html
@@ -1895,12 +1895,13 @@ function(){
RTTI: typeinfo(somehelper) returns a pointer to TTypeInfoHelper with Kind tkHelper.
There are some special cases when using a type helper function/procedure on a value:
- - function result: using a temporary variable
- - const, const argument: When helper function tries to assign a value,
+
- function result : using a temporary variable
+ - const, const argument : When helper function tries to assign a value,
pas2js raises a EPropReadOnly exception. FPC/Delphi use a temporary variable allowing the write.
- - property: uses only the getter, ignoring the setter.
+
- property : uses only the getter, ignoring the setter.
This breaks OOP, as it allows to change fields without calling the setter.
This is FPC/Delphi compatible.
+ - with value do ; : uses some temporary variable. Delphi/FPC do not support it.