Skip to content

Commit cd9f775

Browse files
committed
Fix docstring
1 parent b7a24c8 commit cd9f775

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/src/types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ A body is constructed of one or more abstract wings. All wings are of type Wing.
3636
A Wing has one or more sections and can be created from YAML files or OBJ geometry.
3737
```@docs
3838
Section
39-
Section(LE_point::PosVector, TE_point::PosVector, aero_model)
39+
Section(LE_point, TE_point, aero_model)
4040
Wing
4141
Wing(n_panels::Int; spanwise_distribution::PanelDistribution=LINEAR,
4242
spanwise_direction::PosVector=MVec3([0.0, 1.0, 0.0]))

src/wing_geometry.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Represents a wing section with leading edge, trailing edge, and aerodynamic prop
1717
end
1818

1919
"""
20-
Section(LE_point::PosVector, TE_point::PosVector, aero_model)
20+
Section(LE_point, TE_point, aero_model)
2121
2222
Create a new wing section with the specified leading edge point, trailing edge point,
2323
and aerodynamic model.

0 commit comments

Comments
 (0)