Skip to content

Commit

Permalink
Update doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Sep 20, 2022
1 parent 1303e9b commit 6e170a4
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/objects/curve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub struct Curve {
}

impl Curve {
/// Build a curve using [`CurveBuilder`]
/// Build a `Curve` using [`CurveBuilder`]
pub fn builder(stores: &Stores, surface: Surface) -> CurveBuilder {
CurveBuilder { stores, surface }
}
Expand Down
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/objects/cycle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub struct Cycle {
}

impl Cycle {
/// Build a cycle using [`CycleBuilder`]
/// Build a `Cycle` using [`CycleBuilder`]
pub fn builder(stores: &Stores, surface: Surface) -> CycleBuilder {
CycleBuilder { stores, surface }
}
Expand Down
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/objects/edge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub struct HalfEdge {
}

impl HalfEdge {
/// Build a half-edge using [`HalfEdgeBuilder`]
/// Build a `HalfEdge` using [`HalfEdgeBuilder`]
pub fn builder(stores: &Stores, surface: Surface) -> HalfEdgeBuilder {
HalfEdgeBuilder { stores, surface }
}
Expand Down
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/objects/face.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pub struct Face {
}

impl Face {
/// Build a face using [`FaceBuilder`]
/// Build a `Face` using [`FaceBuilder`]
pub fn builder(stores: &Stores, surface: Surface) -> FaceBuilder {
FaceBuilder { stores, surface }
}
Expand Down
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/objects/shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub struct Shell {
}

impl Shell {
/// Build a shell using [`ShellBuilder`]
/// Build a `Shell` using [`ShellBuilder`]
pub fn builder(stores: &Stores) -> ShellBuilder {
ShellBuilder { stores }
}
Expand Down
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/objects/sketch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub struct Sketch {
}

impl Sketch {
/// Build a sketch using [`SketchBuilder`]
/// Build a `Sketch` using [`SketchBuilder`]
pub fn builder(stores: &Stores, surface: Surface) -> SketchBuilder {
SketchBuilder { stores, surface }
}
Expand Down
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/objects/solid.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub struct Solid {
}

impl Solid {
/// Build a solid using [`SolidBuilder`]
/// Build a `Solid` using [`SolidBuilder`]
pub fn builder(stores: &Stores) -> SolidBuilder {
SolidBuilder { stores }
}
Expand Down
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/objects/vertex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub struct Vertex {
}

impl Vertex {
/// Build a vertex using [`VertexBuilder`]
/// Build a `Vertex` using [`VertexBuilder`]
pub fn builder(curve: Curve) -> VertexBuilder {
VertexBuilder { curve }
}
Expand Down

0 comments on commit 6e170a4

Please sign in to comment.