Skip to content

Commit c7251ee

Browse files
committed
Remove function arg type
1 parent afb0836 commit c7251ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/body_aerodynamics.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -619,10 +619,10 @@ Set velocity array and update wake filaments.
619619
620620
# Arguments
621621
- body_aero::BodyAerodynamics: The [BodyAerodynamics](@ref) struct to modify
622-
- `va`: Velocity vector of the apparent wind speed [m/s]
623-
- `omega`: Turn rate vector around x y and z axis [rad/s]
622+
- `va::VelVector`: Velocity vector of the apparent wind speed [m/s]
623+
- `omega::VelVector`: Turn rate vector around x y and z axis [rad/s]
624624
"""
625-
function set_va!(body_aero::BodyAerodynamics, va::AbstractVector, omega=zeros(MVec3))
625+
function set_va!(body_aero::BodyAerodynamics, va, omega=zeros(MVec3))
626626

627627
# Calculate va_distribution based on input type
628628
va_distribution = if all(omega .== 0.0)

0 commit comments

Comments
 (0)