Skip to content

Commit 2777566

Browse files
authored
feedback
1 parent 67aafb6 commit 2777566

File tree

1 file changed

+1
-1
lines changed
  • src/native/libs/System.Runtime.InteropServices.JavaScript.Native/interop

1 file changed

+1
-1
lines changed

src/native/libs/System.Runtime.InteropServices.JavaScript.Native/interop/weak-ref.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function createWeakRef<T extends object>(jsObj: T): WeakRefInternal<T> {
99
if (useWeakRef) {
1010
return new WeakRef(jsObj);
1111
} else {
12-
// this is trivial WeakRef replacement, which holds strong refrence, instead of weak one, when the browser doesn't support it
12+
// this is trivial WeakRef replacement, which holds strong reference, instead of weak one, when the browser doesn't support it
1313
return createStrongRef(jsObj);
1414
}
1515
}

0 commit comments

Comments
 (0)