Skip to content

Commit 722a791

Browse files
committed
Bugfix in documentation
1 parent 7d61278 commit 722a791

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/src/functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CurrentModule = KiteModels
55
Most of the functions work on a KPS3 object. For this, the variable s is used.
66
Such a variable can be created with the lines:
77
```julia
8-
using KiteUtils, KitePodSimulator
8+
using KiteModels, KitePodSimulator
99
const s = KPS3(KCU())
1010
```
1111

src/KiteModels.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,9 @@ $(TYPEDFIELDS)
173173
depower::S = 0.0
174174
steering::S = 0.0
175175
"initial masses of the point masses"
176-
initial_masses::MVector{P, SimFloat} = ones(P)
176+
initial_masses::MVector{P, S} = ones(P)
177177
"current masses, depending on the total tether length"
178-
masses::MVector{P, SimFloat} = ones(P)
178+
masses::MVector{P, S} = ones(P)
179179
end
180180

181181
"""

0 commit comments

Comments
 (0)