Skip to content

Commit

Permalink
Fix typo in webgpu-memory-layout.md
Browse files Browse the repository at this point in the history
`an` => `can`
  • Loading branch information
doup authored and greggman committed Nov 19, 2024
1 parent c06183b commit 9872fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webgpu/lessons/webgpu-memory-layout.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const ourStructValuesAsU32 = new Uint32Array(ourStructData);
```

Above, `ourStructData` is an `ArrayBuffer` which is a chunk of memory.
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.
`ourStructValuesAsF32` is a view of the memory as 32bit floating point
values. `ourStructValuesAsU32` is a view of **the same memory** as
32bit unsigned integer values.
Expand Down

0 comments on commit 9872fb5

Please sign in to comment.