diff options
Diffstat (limited to 'doc/docs/doc/README.md')
-rwxr-xr-x | doc/docs/doc/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/docs/doc/README.md b/doc/docs/doc/README.md index 9f7d969..a607036 100755 --- a/doc/docs/doc/README.md +++ b/doc/docs/doc/README.md | |||
@@ -1333,7 +1333,7 @@ The spread operator can be used in different positions to capture different rang | |||
1333 | [...start, last] = orders | 1333 | [...start, last] = orders |
1334 | 1334 | ||
1335 | -- Capture things except the middle elements | 1335 | -- Capture things except the middle elements |
1336 | [first, _..., last] = orders | 1336 | [first, ..._, last] = orders |
1337 | ``` | 1337 | ``` |
1338 | <YueDisplay> | 1338 | <YueDisplay> |
1339 | <pre> | 1339 | <pre> |
@@ -1344,7 +1344,7 @@ The spread operator can be used in different positions to capture different rang | |||
1344 | [...start, last] = orders | 1344 | [...start, last] = orders |
1345 | 1345 | ||
1346 | -- Capture things except the middle elements | 1346 | -- Capture things except the middle elements |
1347 | [first, _..., last] = orders | 1347 | [first, ..._, last] = orders |
1348 | </pre> | 1348 | </pre> |
1349 | </YueDisplay> | 1349 | </YueDisplay> |
1350 | 1350 | ||