Skip to content

Commit 4f28c68

Browse files
authored
chore: fix JavaScript lint errors #6214
Signed-off-by: Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com>
1 parent 5543e2c commit 4f28c68

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*
3131
* @example
3232
* function get( obj, prop ) {
33-
* return obj[ prop ] * 2.0;
33+
* return obj[ prop ] * 1.0;
3434
* }
3535
*
3636
* var handlers = {
@@ -42,9 +42,10 @@
4242
* p.a = 3.14;
4343
*
4444
* var x = p.a;
45-
* // returns 6.28
45+
* // returns 3.14
4646
*/
4747
function Proxy( target ) {
48+
// eslint-disable-next-line no-warning-comments
4849
// TODO: polyfill implementation
4950
return target;
5051
}

0 commit comments

Comments
 (0)