Skip to content

Commit 9e19f6c

Browse files
committed
Remove "\ "
1 parent 3fe1b11 commit 9e19f6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ dzeros((100,100), workers()[1:4], [1,4])
4242

4343
The second argument specifies that the array should be created on the first
4444
four workers. When dividing data among a large number of processes,
45-
one often sees diminishing returns in performance. Placing `DArray`\ s
45+
one often sees diminishing returns in performance. Placing `DArray`s
4646
on a subset of processes allows multiple `DArray` computations to
4747
happen at once, with a higher ratio of work to communication on each
4848
process.
@@ -185,7 +185,7 @@ data into a local array `old`. Note that the `do` block syntax is
185185
convenient for passing `init` functions to the `DArray` constructor.
186186
Next, the serial function `life_rule` is called to apply the update rules
187187
to the data, yielding the needed `DArray` chunk. Nothing about `life_rule`
188-
is `DArray`\ -specific, but we list it here for completeness:
188+
is `DArray`-specific, but we list it here for completeness:
189189

190190
```julia
191191
function life_rule(old)

0 commit comments

Comments
 (0)