diff --git a/src/TrainRuns.jl b/src/TrainRuns.jl index f5a9efa..754a3e6 100644 --- a/src/TrainRuns.jl +++ b/src/TrainRuns.jl @@ -40,7 +40,7 @@ The running time will be return in seconds. # Examples ```julia-repl -julia> trainrun(train, path) +julia> trainrun(train, path)[end,:t] xxx.xx # in seconds ``` """ diff --git a/src/constructors.jl b/src/constructors.jl index 1adc3ac..556cfea 100644 --- a/src/constructors.jl +++ b/src/constructors.jl @@ -14,7 +14,8 @@ The function Settings() will create a set of settings for the train run calculat # Example ``` julia> my_settings = Settings() # will generate default settings -Settings(mass_point, :distance, 20, 3, running_time, :dataframe) +# massModel, stepVariable, stepSize, approxLevel, outputDetail, outputFormat +Settings(:mass_point, :distance, 20, 3, :running_time, :dataframe) ``` """ function Settings(file="DEFAULT")