diff --git a/webgpu/lessons/ja/webgpu-memory-layout.md b/webgpu/lessons/ja/webgpu-memory-layout.md
index 9f58326c..2be72c58 100644
--- a/webgpu/lessons/ja/webgpu-memory-layout.md
+++ b/webgpu/lessons/ja/webgpu-memory-layout.md
@@ -87,6 +87,8 @@ ourStructValuesAsF32[kAccelerationOffset] = 3.4;
ourStructValuesAsU32[kFrameCountOffset] = 56; // これは整数値
```
+## `TypedArrays`
+
以上で、「12バイトのバッファ」に「3つの数値」を適切に配置することができました。
さて、プログラミングでは、同じことをやるために色々な書き方ができます。
diff --git a/webgpu/lessons/ko/webgpu-memory-layout.md b/webgpu/lessons/ko/webgpu-memory-layout.md
index e90e2403..42856a8c 100644
--- a/webgpu/lessons/ko/webgpu-memory-layout.md
+++ b/webgpu/lessons/ko/webgpu-memory-layout.md
@@ -68,7 +68,7 @@ ourStructValuesAsF32[kAccelerationOffset] = 3.4;
ourStructValuesAsU32[kFrameCountOffset] = 56; // 정수값
```
-## `TypedArrays`
+## `TypedArrays`
유의할 것은, 이를 수행하기 위한 방법에는 수많은 방법이 존재한다는 겁니다.
`TypedArray`의 생성자는 다양한 형태를 가질 수 있습니다.
diff --git a/webgpu/lessons/uk/webgpu-memory-layout.md b/webgpu/lessons/uk/webgpu-memory-layout.md
index 0868119f..81842ce5 100644
--- a/webgpu/lessons/uk/webgpu-memory-layout.md
+++ b/webgpu/lessons/uk/webgpu-memory-layout.md
@@ -83,7 +83,7 @@ ourStructValuesAsF32[kAccelerationOffset] = 3.4;
ourStructValuesAsU32[kFrameCountOffset] = 56; // an integer value
```
-## `TypedArrays`
+## `TypedArrays`
Зверніть увагу, що, як і багато речей в програмуванні, ми можемо зробити це
різними способами. `TypedArray` має конструктор, який набуває різних форм.
diff --git a/webgpu/lessons/webgpu-memory-layout.md b/webgpu/lessons/webgpu-memory-layout.md
index e7e676b5..046e2d22 100644
--- a/webgpu/lessons/webgpu-memory-layout.md
+++ b/webgpu/lessons/webgpu-memory-layout.md
@@ -76,7 +76,7 @@ ourStructValuesAsF32[kAccelerationOffset] = 3.4;
ourStructValuesAsU32[kFrameCountOffset] = 56; // an integer value
```
-## `TypedArrays`
+## `TypedArrays`
Note, like many things in programming there are multiple ways we could
do this. `TypedArray`s have a constructor that takes various forms. For example
diff --git a/webgpu/lessons/zh_cn/webgpu-memory-layout.md b/webgpu/lessons/zh_cn/webgpu-memory-layout.md
index ae691927..415a3e88 100644
--- a/webgpu/lessons/zh_cn/webgpu-memory-layout.md
+++ b/webgpu/lessons/zh_cn/webgpu-memory-layout.md
@@ -59,6 +59,8 @@ ourStructValuesAsF32[kAccelerationOffset] = 3.4;
ourStructValuesAsU32[kFrameCountOffset] = 56; // an integer value
```
+## `TypedArrays`
+
请注意,就像编程中的许多事情一样,我们有多种方法可以做到这一点。TypedArray 的构造函数有多种形式。例如
- `new Float32Array(12)`