Skip to content

Commit 6b3f3bc

Browse files
authored
Added two newlines to display correctly the code blocks
1 parent 90fbd63 commit 6b3f3bc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,15 @@ version is the following:
6060

6161
<img src="https://user-images.githubusercontent.com/1814174/27211626-79fe1b9a-520f-11e7-87f1-1cb33da91609.PNG">
6262
Let's build a version of this. Using the constructors we can directly construct leaf types:
63+
6364
```julia
6465
cell1 = Cell([1.0; 2.0; 3.0])
6566
cell2 = Cell([4.0; 5.0])
6667
```
6768
and build types higher up in the hierarchy by using the `constuct` method. The method
6869
is `construct(T::AbstractMultiScaleArray, nodes, values)`, though if `values` is not given it's
6970
taken to be empty.
71+
7072
```julia
7173
cell3 = Cell([3.0; 2.0; 5.0])
7274
cell4 = Cell([4.0; 6.0])

0 commit comments

Comments
 (0)