Skip to content

Commit 1f1c8c9

Browse files
authored
Update README.md
1 parent 6ca12b4 commit 1f1c8c9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ See
1616
Via Julia's package manager (opened with `]`)
1717

1818
```julia
19-
julia>] add https://github.com/SpeedyWeather/StochasticStir.jl
19+
julia>]add https://github.com/SpeedyWeather/StochasticStir.jl
2020
```
2121
or via `using Pkg; Pkg.add("https://github.com/SpeedyWeather/StochasticStir.jl")`.
2222
This package is not registered in Julia's general registry, so you have to specify
@@ -31,7 +31,7 @@ using StochasticStir
3131
# model components
3232
spectral_grid = SpectralGrid(trunc=42,nlev=1)
3333
forcing = StochasticStirring(spectral_grid,latitude=45,strength=7e-11)
34-
drag = JetDrag(spectral,time_scale=Day(6))
34+
drag = JetDrag(spectral_grid,time_scale=Day(6))
3535
initial_conditions = StartFromRest()
3636

3737
# construct the model and initialize
@@ -44,8 +44,8 @@ run!(simulation,period=Day(100),output=true)
4444

4545
and you can get a list of options for `JetDrag` and `StochasticStirring` by typing
4646
```julia
47-
julia>? JetDrag
48-
julia>? StochasticStirring
47+
julia>?JetDrag
48+
julia>?StochasticStirring
4949
```
5050
where `?` opens the help.
5151

0 commit comments

Comments
 (0)