Skip to content

Commit 9872fb5

Browse files
doupgreggman
authored andcommitted
Fix typo in webgpu-memory-layout.md
`an` => `can`
1 parent c06183b commit 9872fb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webgpu/lessons/webgpu-memory-layout.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const ourStructValuesAsU32 = new Uint32Array(ourStructData);
5959
```
6060

6161
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.
62+
To look at the contents of this memory we can create views of it.
6363
`ourStructValuesAsF32` is a view of the memory as 32bit floating point
6464
values. `ourStructValuesAsU32` is a view of **the same memory** as
6565
32bit unsigned integer values.

0 commit comments

Comments
 (0)