diff --git a/README.md b/README.md
index 63f6f55..36f21fd 100644
--- a/README.md
+++ b/README.md
@@ -1988,6 +1988,7 @@ Struct
------
* **Module that performs conversions between a sequence of numbers and a bytes object.**
* **System’s type sizes, byte order, and alignment rules are used by default.**
+* **The only exception being types float and double, that always take up 4 and 8 bytes.**
```python
from struct import pack, unpack
diff --git a/index.html b/index.html
index 46cdbcd..0514eb6 100644
--- a/index.html
+++ b/index.html
@@ -1648,6 +1648,7 @@ CompletedProcess(args=['bc', #Struct
Module that performs conversions between a sequence of numbers and a bytes object.
System’s type sizes, byte order, and alignment rules are used by default.
+
The only exception being types float and double, that always take up 4 and 8 bytes.
from struct import pack, unpack
<bytes> = pack('<format>', <el_1> [, ...]) # Packages arguments into bytes object.
<tuple> = unpack('<format>', <bytes>) # Use iter_unpack() for iterator of tuples.