Skip to content

Commit cb2b6df

Browse files
Update README.md
1 parent 536bc19 commit cb2b6df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ b = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
2323
vA = VectorOfArray(a)
2424
vB = VectorOfArray(b)
2525

26-
vA .+ vB # Now all standard array stuff works!
26+
vA .* vB # Now all standard array stuff works!
2727

2828
a = (rand(5),rand(5))
2929
b = (rand(5),rand(5))
3030
pA = ArrayPartition(a)
3131
pB = ArrayPartition(b)
3232

33-
pA .+ pB # Now all standard array stuff works!
34-
```
33+
pA .* pB # Now all standard array stuff works!
34+
```

0 commit comments

Comments
 (0)