Skip to content

Commit e1fd66b

Browse files
jspanchuDawn LUCI CQ
authored andcommitted
Fix typo in variable name for array of promises
Change-Id: Ice10c1aec271a090f53a5e6d5b74006981d1bb79 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/212215 Commit-Queue: Jaswant Panchumarti <[email protected]> Auto-Submit: Jaswant Panchumarti <[email protected]> Commit-Queue: Loko Kung <[email protected]> Reviewed-by: Loko Kung <[email protected]>
1 parent 362dd79 commit e1fd66b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

third_party/emdawnwebgpu/library_webgpu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ var LibraryWebGPU = {
587587
if (timeoutNSPtr) {
588588
var timeoutMS = {{{ gpu.makeGetU64('timeoutNSPtr', 0) }}} / 1000000;
589589
promises.length = futureCount + 1;
590-
promise[futureCount] = new Promise((resolve) => setTimeout(resolve, timeoutMS, 0));
590+
promises[futureCount] = new Promise((resolve) => setTimeout(resolve, timeoutMS, 0));
591591
} else {
592592
promises.length = futureCount;
593593
}

0 commit comments

Comments
 (0)