Skip to content

Commit e1a64e7

Browse files
willtebbuttcpfiffer
andcommitted
Fix formatting in readme (#161)
* Fix formatting in readme * Update README.md * Update README.md Co-Authored-By: Cameron Pfiffer <cpfiffer@gmail.com>
1 parent 62f6122 commit e1a64e7

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

README.md

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,24 @@ Summarize parameters | Summarize chains
4141
### Chains type
4242
```julia
4343
# construction of a Chains object with no names
44-
Chains(val::AbstractArray{A,3};
45-
start::Int=1,
46-
thin::Int=1,
47-
evidence = 0.0,
48-
info=NamedTuple())
44+
Chains(
45+
val::AbstractArray{A,3};
46+
start::Int=1,
47+
thin::Int=1,
48+
evidence = 0.0,
49+
info=NamedTuple(),
50+
)
4951

5052
# construction of a chains object with new names
51-
Chains(val::AbstractArray{A,3},
52-
parameter_names::Vector{String},
53-
name_map = copy(DEFAULT_MAP);
54-
start::Int=1,
55-
thin::Int=1,
56-
evidence = 0.0,
57-
info=NamedTuple())
53+
Chains(
54+
val::AbstractArray{A,3},
55+
parameter_names::Vector{String},
56+
name_map = copy(DEFAULT_MAP);
57+
start::Int=1,
58+
thin::Int=1,
59+
evidence = 0.0,
60+
info=NamedTuple(),
61+
)
5862

5963
# Indexing a Chains object
6064
chn = Chains(...)

0 commit comments

Comments
 (0)