Skip to content

Commit e4e0f8c

Browse files
committed
Fix lint errors
1 parent 30981a8 commit e4e0f8c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/utils/compose

lib/node_modules/@stdlib/utils/compose/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ __Only__ the rightmost function is explicitly permitted to accept multiple argum
4848

4949
``` javascript
5050
function a( x, y ) {
51-
return x*5 + y*3;
51+
return (x*5) + (y*3);
5252
}
5353

5454
function b( r ) {

0 commit comments

Comments
 (0)