Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
cecoeco committed Sep 13, 2024
1 parent 380a9da commit feddb23
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ create and save a flow diagram:
```julia
using PRISMA

fd::FlowDiagram = flow_diagram()
flow_diagram_save("flow_diagram.svg", fd)
flow_diagram_save("flow_diagram.svg", flow_diagram())
```

output:
Expand Down
4 changes: 2 additions & 2 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DocumenterCitations = "daee34ce-89f3-4625-b898-19384cb65244"
PRISMA = "7b67a8d2-c4f5-4933-b91c-0fc427024db5"

[compat]
Documenter = "1.3"
Documenter = "1.7"
DocumenterCitations = "1.3"
PRISMA = "0.0.7, 0.0.6"
PRISMA = "0.0.7"
julia = "1"
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Documenter.makedocs(
plugins=[
DocumenterCitations.CitationBibliography(
joinpath(ASSETS, "references.bib"),
style=:authoryear
style=:numeric
)
]
)
Expand Down
2 changes: 1 addition & 1 deletion docs/src/assets/bib.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
.citation ul {
padding: 0 0 2.25em 0;
margin: 0;
list-style: none;
list-style: none !important;
}

.citation ul li {
Expand Down
4 changes: 2 additions & 2 deletions src/checklist_docstrings.jl
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ returns a template PRISMA checklist as a `DataFrame`
```jldoctest
julia> using PRISMA
julia> println(checklist_df())
julia> checklist_df()
49×4 DataFrame
Row │ Section and Topic Item # Checklist Item Location where item is reported
│ String String String String
Expand Down Expand Up @@ -167,7 +167,7 @@ julia> using PRISMA
julia> checklist_template()
"checklist.csv"
julia> println(checklist_read("checklist.csv"))
julia> checklist_read("checklist.csv")
49×4 DataFrame
Row │ Section and Topic Item # Checklist Item Location where item is reported
│ String String String String
Expand Down
4 changes: 2 additions & 2 deletions src/flow_diagram_docstrings.jl
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ returns the template that is used to create the flow diagram as a `DataFrame`.
```jldoctest
julia> using PRISMA
julia> println(flow_diagram_df())
julia> flow_diagram_df()
41×3 DataFrame
Row │ box_num box_text result
│ Int64 String Int64?
Expand Down Expand Up @@ -174,7 +174,7 @@ julia> using PRISMA
julia> flow_diagram_template()
"flow_diagram.csv"
julia> println(flow_diagram_read("flow_diagram.csv"))
julia> flow_diagram_read("flow_diagram.csv")
41×3 DataFrame
Row │ box_num box_text result
│ Int64 String Int64?
Expand Down

0 comments on commit feddb23

Please sign in to comment.