Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
typo in string
  • Loading branch information
lukeplowden committed Jun 16, 2025
commit 0af8df9e37e94f189bbeb8945f581872fb9639b4
2 changes: 1 addition & 1 deletion src/webgpu/p5.RendererWebGPU.js
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ class RendererWebGPU extends Renderer3D {
new RegExp(`struct\\s+${structName}\\s*\\{([^\\}]+)\\}`)
);
if (!structMatch) {
throw new Error(`Can't find a struct defnition for ${structName}`);
throw new Error(`Can't find a struct definition for ${structName}`);
}

const structBody = structMatch[1];
Expand Down
Loading