Skip to content

Commit 2340149

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

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/proxy/ctor/lib

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*
3333
* @example
3434
* function get( obj, prop ) {
35-
* return obj[ prop ] * 2.0;
35+
* return obj[ prop ] * 1.0;
3636
* }
3737
*
3838
* var handlers = {
@@ -44,7 +44,7 @@
4444
* p.a = 3.14;
4545
*
4646
* var x = p.a;
47-
* // returns 6.28
47+
* // returns 3.14
4848
*/
4949
var proxy = ( typeof Proxy === 'undefined' ) ? null : Proxy; // eslint-disable-line stdlib/require-globals, node/no-unsupported-features/es-builtins
5050

0 commit comments

Comments
 (0)