Skip to content

Commit de980fa

Browse files
Merge pull request #765 from abhro/patch-1
Fix markdown list in plot.md
2 parents 6db32d9 + ff7c39e commit de980fa

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

docs/src/basics/plot.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -76,46 +76,46 @@ the following conveniences are provided:
7676
variable is plotted as a function of time. For example, the list above
7777
is equivalent to:
7878

79-
```julia
80-
idxs = [1, (1, 3), (4, 5)]
81-
```
79+
```julia
80+
idxs = [1, (1, 3), (4, 5)]
81+
```
8282

83-
and
83+
and
8484

85-
```julia
86-
idxs = [1, 3, 4]
87-
```
85+
```julia
86+
idxs = [1, 3, 4]
87+
```
8888

89-
is the most concise way to plot the variables 1, 3, and 4 as a function
90-
of time.
89+
is the most concise way to plot the variables 1, 3, and 4 as a function
90+
of time.
9191

9292
- It is possible to omit the list if only one plot is wanted: `(2,3)`
9393
and `4` are respectively equivalent to `[(2,3)]` and `[(0,4)]`.
9494

9595
- A tuple containing one or several lists will be expanded by
9696
associating corresponding elements of the lists with each other:
9797

98-
```julia
99-
idxs = ([1, 2, 3], [4, 5, 6])
100-
```
98+
```julia
99+
idxs = ([1, 2, 3], [4, 5, 6])
100+
```
101101

102-
is equivalent to
102+
is equivalent to
103103

104-
```julia
105-
idxs = [(1, 4), (2, 5), (3, 6)]
106-
```
104+
```julia
105+
idxs = [(1, 4), (2, 5), (3, 6)]
106+
```
107107

108-
and
108+
and
109109

110-
```julia
111-
idxs = (1, [2, 3, 4])
112-
```
110+
```julia
111+
idxs = (1, [2, 3, 4])
112+
```
113113

114-
is equivalent to
114+
is equivalent to
115115

116-
```julia
117-
idxs = [(1, 2), (1, 3), (1, 4)]
118-
```
116+
```julia
117+
idxs = [(1, 2), (1, 3), (1, 4)]
118+
```
119119

120120
- Instead of using integers, one can use the symbols from a `ParameterizedFunction`.
121121
For example, `idxs=(:x,:y)` will replace the symbols with the integer values for

0 commit comments

Comments
 (0)