From 93437175dde2a4933fbae60a5c4cfd066cad190f Mon Sep 17 00:00:00 2001 From: A-Walrus Date: Sun, 19 Mar 2023 13:47:13 +0200 Subject: [PATCH 1/2] Update docs for `Solid` --- crates/fj-kernel/src/objects/full/solid.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/fj-kernel/src/objects/full/solid.rs b/crates/fj-kernel/src/objects/full/solid.rs index dfe53c885..0dd3cf18e 100644 --- a/crates/fj-kernel/src/objects/full/solid.rs +++ b/crates/fj-kernel/src/objects/full/solid.rs @@ -5,7 +5,9 @@ use crate::{ storage::Handle, }; -/// A 3-dimensional shape +/// A 3-dimensional shape, built from [`Shell`]s. Many Solids will contains only +/// one shell, but if the Solid contains cavities they will be reprented by a +/// shell each, as well as a shell for the outside. /// /// # Implementation Note /// From 5476076b6f48ca60a61804aa4e6c44cc04b510b4 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 20 Mar 2023 12:00:01 +0100 Subject: [PATCH 2/2] Fix typo in doc comment --- crates/fj-kernel/src/objects/full/solid.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fj-kernel/src/objects/full/solid.rs b/crates/fj-kernel/src/objects/full/solid.rs index 0dd3cf18e..b630296bf 100644 --- a/crates/fj-kernel/src/objects/full/solid.rs +++ b/crates/fj-kernel/src/objects/full/solid.rs @@ -6,7 +6,7 @@ use crate::{ }; /// A 3-dimensional shape, built from [`Shell`]s. Many Solids will contains only -/// one shell, but if the Solid contains cavities they will be reprented by a +/// one shell, but if the Solid contains cavities they will be represented by a /// shell each, as well as a shell for the outside. /// /// # Implementation Note