We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c06183b commit 9872fb5Copy full SHA for 9872fb5
webgpu/lessons/webgpu-memory-layout.md
@@ -59,7 +59,7 @@ const ourStructValuesAsU32 = new Uint32Array(ourStructData);
59
```
60
61
Above, `ourStructData` is an `ArrayBuffer` which is a chunk of memory.
62
-To look at the contents of this memory we an create views of it.
+To look at the contents of this memory we can create views of it.
63
`ourStructValuesAsF32` is a view of the memory as 32bit floating point
64
values. `ourStructValuesAsU32` is a view of **the same memory** as
65
32bit unsigned integer values.
0 commit comments