Skip to content

Commit 109c3b6

Browse files
Merge pull request #91 from pitsianis/patch-1
Added two newlines to display correctly the code blocks
2 parents 90fbd63 + 6b3f3bc commit 109c3b6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

+2
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)