Skip to content

Commit b5d3c85

Browse files
committed
Auto-generated commit
1 parent 6478f0e commit b5d3c85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

to-fancy/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ v = y[ ':' ];
173173
// returns [ 6, 6, 6, 6 ]
174174
```
175175

176-
Fancy array broadcasting follows the [same rules][@stdlib/ndarray/base/broadcast-shapes] as for [ndarrays][@stdlib/ndarray/ctor]. Consequently, when assigning arrays to slices, the array on the right-hand-side must be broadcast-compatible with number of elements in the slice. For example,
176+
Fancy array broadcasting follows the [same rules][@stdlib/ndarray/base/broadcast-shapes] as for [ndarrays][@stdlib/ndarray/ctor]. Consequently, when assigning arrays to slices, the array on the right-hand-side must be broadcast-compatible with number of elements in the slice. For example, each assignment expression in the following example follows broadcast rules and is thus valid.
177177

178178
```javascript
179179
var y = array2fancy( [ 1, 2, 3, 4 ] );
@@ -208,7 +208,7 @@ v = y[ ':' ];
208208
// returns [ 5, 12, 7, 12 ]
209209
```
210210

211-
are all valid. However,
211+
However, the following assignment expressions are not valid.
212212

213213
<!-- run throws: true -->
214214

0 commit comments

Comments
 (0)