tchange minor typos in documentation - Granular.jl - Julia package for granular dynamics simulation
(HTM) git clone git://src.adamsgaard.dk/Granular.jl
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit b891256168049fe1cea68f7e008c45b5a11d7b23
(DIR) parent 2f2716c0592b904d8af0f66c2b8b389b3d276f46
(HTM) Author: Anders Damsgaard <andersd@riseup.net>
Date: Thu, 9 Nov 2017 07:24:41 -0600
change minor typos in documentation
Diffstat:
M docs/src/man/getting_started.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/docs/src/man/getting_started.md b/docs/src/man/getting_started.md
t@@ -285,7 +285,7 @@ As in the previous example, we start by creating a fluid grid:
```julia-repl
julia> import Granular
-julia> sim = Granular.createSimulation(id="sedimentation.jl")
+julia> sim = Granular.createSimulation(id="sedimentation")
```
### Creating a pseudo-random grain packing
t@@ -302,7 +302,7 @@ julia> Granular.regularPacking!(sim, [7, 25], 0.02, 0.2)
Since we haven't explicitly set the grain sizes for this example, we can
inspect the values by plotting a histogram of sizes (only works if the `PyPlot`
-package is installed with `Pkg.add("PyPlot")`:
+package is installed with `Pkg.add("PyPlot")`):
```julia-repl
julia> Granular.plotGrainSizeDistribution(sim)