Skip to content

Commit

Permalink
Docs: add a few more missing quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
PMeira committed Nov 2, 2023
1 parent 0f0b886 commit 34e3db2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/src/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ using OpenDSSDirect
filename = "C:/OpenDSS/electricdss/IEEETestCases/8500-Node/Master.dss"
dss("""
clear
compile $filename
compile "$filename"
""")
```

Expand All @@ -33,7 +33,7 @@ using OpenDSSDirect
filename = "C:/OpenDSS/electricdss/IEEETestCases/8500-Node/Master.dss"
dss("""
clear
compile $filename
compile "$filename"
""")
loadnumber = Loads.First()
while loadnumber > 0
Expand Down Expand Up @@ -65,7 +65,7 @@ julia> filename = joinpath(Pkg.dir(), "OpenDSSDirect", "examples", "8500-Node",

julia> dss("""
clear
compile $filename
compile "$filename"
""")

julia> Solution.Solve();
Expand Down
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ using OpenDSSDirect
filename = joinpath(dirname(dirname(pathof(OpenDSSDirect))), "examples", "8500-Node", "Master.dss")
dss("""
clear
compile $filename
compile "$filename"
solve
""")

Expand Down

0 comments on commit 34e3db2

Please sign in to comment.