Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4c473eb

Browse files
authored
chore: fix typo in mapSlices example (josdejong#3392)
Trivial change, merging myself
1 parent ad36350 commit 4c473eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/expression/embeddedDocs/function/matrix/mapSlices.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const mapSlicesDocs = {
88
examples: [
99
'A = [[1, 2], [3, 4]]',
1010
'mapSlices(A, 1, sum)', // returns [4, 6]
11-
'mapSlices(A, 2, product)' // returns [2, 12]
11+
'mapSlices(A, 2, prod)' // returns [2, 12]
1212
],
1313
seealso: ['map', 'forEach']
1414
}

0 commit comments

Comments
 (0)