Skip to content

Commit

Permalink
Replace all double quotes in assets/main.js with single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
white-axe committed Oct 17, 2023
1 parent 5d6bbb2 commit d9ec1b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

// Check if the user's browser supports WebGPU
console.log('Checking for WebGPU support in web workers…');
const worker = new Worker("/webgpu-test-worker.js");
const worker = new Worker('/webgpu-test-worker.js');
const promise = new Promise(function (resolve) {
worker.onmessage = function (e) {
resolve(e.data);
Expand Down

0 comments on commit d9ec1b6

Please sign in to comment.