From f29670ce7384a9646eac66f05e6b36e1c93004b6 Mon Sep 17 00:00:00 2001 From: lrennels Date: Mon, 29 Apr 2019 14:54:50 -0700 Subject: [PATCH] Fix typo in documentation --- docs/src/tutorials/tutorial_1.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/src/tutorials/tutorial_1.md b/docs/src/tutorials/tutorial_1.md index a3b9dde91..e8262c5e8 100644 --- a/docs/src/tutorials/tutorial_1.md +++ b/docs/src/tutorials/tutorial_1.md @@ -48,8 +48,7 @@ getfund(; nsteps = default_nsteps, datadir = default_datadir, params = default_p ``` Thus there are no required arguments, although the user can input `nsteps` to define the number of timesteps (years in this case) the model runs for, `datadir` to define the location of the input data, and `params`, a dictionary definining the parameters of the model. For example, if you wish to see only the first 100 timesteps,you may use: ``` -include("src/fund.jl") -using .Fund +using MimiFUND m = getfund(nsteps = 100) run(m) ```