Skip to content

Commit 270c83b

Browse files
committed
Fix example code and annotations
1 parent 2fd8535 commit 270c83b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/utils/curry-right/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
... }
4646
... };
4747
> f = {{alias}}( obj.greet, obj );
48-
> var str = f( 'Hello' )( 'there' )
48+
> var str = f( 'there' )( 'Hello' )
4949
'Hello there, Ada!'
5050

5151
See Also

lib/node_modules/@stdlib/utils/type-of/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
// Anonymous constructor:
126126
> var Foo = function () { return this; };
127127
> t = {{alias}}( new Foo() )
128-
''
128+
'' || 'foo'
129129

130130
See Also
131131
--------

0 commit comments

Comments
 (0)