diff --git a/Doc/Manual/Scilab.html b/Doc/Manual/Scilab.html
index a1ba7f8e2..dfcf3959c 100644
--- a/Doc/Manual/Scilab.html
+++ b/Doc/Manual/Scilab.html
@@ -1351,13 +1351,13 @@ The following table provides the equivalent Scilab type for C/C++ primitive type
| bool | boolean |
| char | string |
| signed char | double or int8 |
-| unsigned char | uint8 |
+| unsigned char | double or uint8 |
| short | double or int16 |
-| unsigned short | uint16 |
+| unsigned short | double or uint16 |
| int | double or int32 |
-| unsigned int | uint32 |
+| unsigned int | double or uint32 |
| long | double or int32 |
-| unsigned long | uint32 |
+| unsigned long | double or uint32 |
| signed long long | not supported in Scilab 5.x |
| unsigned long long | not supported in Scilab 5.x |
| float | double |
@@ -1370,15 +1370,14 @@ The following table provides the equivalent Scilab type for C/C++ primitive type
Notes:
- In Scilab the double type is used far more than any integer type.
-This is why signed integer values (short, int, integer, long) are automatically converted to Scilab double values when marshalled from C into Scilab.
-Additionally on input to a C function, Scilab double values are converted from into the related integer type.
-Unsigned integers are not concerned by these conversions.
+This is why integer values (int32, uint32, ...) are automatically converted to Scilab double values when marshalled from C into Scilab.
+Additionally on input to a C function, Scilab double values are converted into the related integer type.
-
When an integer is expected, if the input is a double, the value must be an integer, i.e. it must not have any decimal part, otherwise a SWIG value error occurs.
-
-In SWIG for Scilab 5.x the long long type is not supported since Scilab 5.x does not have a 64-bit integer type.
+In SWIG for Scilab 5.x, the long long type is not supported, since Scilab 5.x does not have a 64-bit integer type.
The default behaviour is for SWIG to generate code that will give a runtime error if long long type arguments are used from Scilab.