diff --git a/Required-Browser-Features.md b/Required-Browser-Features.md
index 76e55c5..e1dec17 100644
--- a/Required-Browser-Features.md
+++ b/Required-Browser-Features.md
@@ -31,8 +31,7 @@ No emulation of the `addEventListener` method is provided in browsers that do no
## Typed arrays are present
-The `Uint8Array`, `Uint16Array`, `Int32Array`, `Float32Array` and `Float64Array` will be replaced
-by the artificial TypedArray object if those types are not implemented natively.
+The `Uint8Array`, `Uint16Array`, `Int32Array`, `Uint32Array`, `Float32Array` and `Float64Array` will be replaced by the artificial TypedArray object if those types are not implemented natively.
Only `subarray`, `buffer`, `set` and `byteLength` are similated. The `subarray` just clones the array. The `set` method is provided to emulate the `Uint8Array`'s `set` method. The emulated typed arrays are slower, don't truncate the items to specific data types and they are memory inefficient.