We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
IO.md
1 parent 101a8db commit 16264e8Copy full SHA for 16264e8
docs/src/man/IO.md
@@ -7,7 +7,7 @@ After simulating the potentials and fields of a detector setup, the results shou
7
One easy way to do this is using [JLD2.jl](https://github.com/JuliaIO/JLD2.jl) and [FileIO.jl](https://github.com/JuliaIO/FileIO.jl).
8
9
Simulation results can be saved to a JLD file using `FileIO.save`:
10
-```yaml
+```julia
11
using SolidStateDetectors
12
sim = Simulation("<config-file-name>")
13
# ...
@@ -17,7 +17,7 @@ FileIO.save("<name-of-simulation-file>.jld", Dict("Simulation" => sim))
17
```
18
19
It can be read back in using `FileIO.load`:
20
21
using FileIO
22
sim = FileIO.load("<name-of-simulation.file>.jld", "Simulation")
23
0 commit comments