Skip to content

Commit 63d38c2

Browse files
Fix typo in docs
1 parent 1586564 commit 63d38c2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Area: 1985.73
181181
│ f │ 2.579280.013.0 │ Plant stress threshold, controls at what moisture deficit plants begin to experience stress. │
182182
│ a │ 5.923380.110.0 │ Quickflow storage coefficient, where higher values lead to faster quickflow response. │
183183
│ b │ 0.09899260.0010.1 │ Slowflow storage coefficient, lower values lead to slower baseflow recession. │
184-
│ storage_coef │ 1.861341.0e-1010.0 Groundwater interaction factor, controling how water is exchanged with deeper groundwater. │
184+
│ storage_coef │ 1.861341.0e-1010.0 │ Groundwater interaction factor, controlling how water is exchanged with deeper groundwater. │
185185
│ alpha │ 0.7279051.0e-51.0 │ Effective rainfall scaling factor, partitions rainfall into runoff. │
186186
└──────────────┴───────────┴─────────────┴─────────────┴──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
187187
```

docs/src/primer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Area: 130.0
8585
│ f │ 0.8 │ 0.01 │ 3.0 │ Plant stress threshold, controls at what moisture deficit plants begin to experience stress. │
8686
│ a │ 0.9 │ 0.1 │ 10.0 │ Quickflow storage coefficient, where higher values lead to faster quickflow response. │
8787
│ b │ 0.1 │ 0.001 │ 0.1 │ Slowflow storage coefficient, lower values lead to slower baseflow recession. │
88-
│ storage_coef │ 2.9 │ 1.0e-10 │ 10.0 │ Groundwater interaction factor, controling how water is exchanged with deeper groundwater. │
88+
│ storage_coef │ 2.9 │ 1.0e-10 │ 10.0 │ Groundwater interaction factor, controlling how water is exchanged with deeper groundwater. │
8989
│ alpha │ 0.95 │ 1.0e-5 │ 1.0 │ Effective rainfall scaling factor, partitions rainfall into runoff. │
9090
└──────────────┴───────┴─────────────┴─────────────┴──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
9191
```

src/Nodes/IHACRES/IHACRESNode.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Base.@kwdef mutable struct IHACRESBilinearNode{P,A<:AbstractFloat} <: IHACRESNod
2020
a::P = Param(0.9, bounds=(0.1, 10.0), desc="Quickflow storage coefficient, where higher values lead to faster quickflow response.") # quickflow storage coefficient == (1/tau_q)
2121
b::P = Param(0.1, bounds=(1e-3, 0.1), desc="Slowflow storage coefficient, lower values lead to slower baseflow recession.") # slowflow storage coefficent == (1/tau_s)
2222

23-
storage_coef::P = Param(2.9, bounds=(1e-10, 10.0), desc="Groundwater interaction factor, controling how water is exchanged with deeper groundwater.")
23+
storage_coef::P = Param(2.9, bounds=(1e-10, 10.0), desc="Groundwater interaction factor, controlling how water is exchanged with deeper groundwater.")
2424
alpha::P = Param(0.1, bounds=(1e-5, 1 - 1 / 10^9), desc="Effective rainfall scaling factor, partitions rainfall into runoff.")
2525

2626
# const level_params::Array{P, 1} = [

0 commit comments

Comments
 (0)