diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-12-23 00:33:22 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-12-23 00:34:17 +0100 |
| commit | 1a9bcaccec411cbc50a5d1ff64f266afaa63a29c (patch) | |
| tree | 3d63a07659ca159c72d87b465699049301628c89 /library/src/basics | |
| parent | fd787317a858f0f6d9a3ac551d3fecb93286a0af (diff) | |
Fix typos
Diffstat (limited to 'library/src/basics')
| -rw-r--r-- | library/src/basics/enum.rs | 2 | ||||
| -rw-r--r-- | library/src/basics/list.rs | 2 | ||||
| -rw-r--r-- | library/src/basics/table.rs | 2 | ||||
| -rw-r--r-- | library/src/basics/terms.rs | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/library/src/basics/enum.rs b/library/src/basics/enum.rs index 81a36b61..f1784a7e 100644 --- a/library/src/basics/enum.rs +++ b/library/src/basics/enum.rs @@ -42,7 +42,7 @@ use crate::text::TextNode; /// - items: Content (positional, variadic) /// The enumeration's children. /// -/// When using the enum syntax, adjacents items are automatically collected +/// When using the enum syntax, adjacent items are automatically collected /// into enumerations, even through constructs like for loops. /// /// ### Example diff --git a/library/src/basics/list.rs b/library/src/basics/list.rs index 24c7b21c..fc666586 100644 --- a/library/src/basics/list.rs +++ b/library/src/basics/list.rs @@ -38,7 +38,7 @@ use crate::text::TextNode; /// - items: Content (positional, variadic) /// The list's children. /// -/// When using the list syntax, adjacents items are automatically collected +/// When using the list syntax, adjacent items are automatically collected /// into lists, even through constructs like for loops. /// /// ### Example diff --git a/library/src/basics/table.rs b/library/src/basics/table.rs index 411a31fc..01b16898 100644 --- a/library/src/basics/table.rs +++ b/library/src/basics/table.rs @@ -4,7 +4,7 @@ use crate::prelude::*; /// # Table /// A table of items. /// -/// Tables are used to arrange content in cells. Cells can contain arbitray +/// Tables are used to arrange content in cells. Cells can contain arbitrary /// content, including multiple paragraphs and are specified in row-major order. /// Because tables are just grids with configurable cell properties, refer to /// the [grid documentation](@grid) for more information on how to size the diff --git a/library/src/basics/terms.rs b/library/src/basics/terms.rs index 1570d177..1409350a 100644 --- a/library/src/basics/terms.rs +++ b/library/src/basics/terms.rs @@ -24,7 +24,7 @@ use crate::text::{SpaceNode, TextNode}; /// - items: Content (positional, variadic) /// The term list's children. /// -/// When using the term list syntax, adjacents items are automatically +/// When using the term list syntax, adjacent items are automatically /// collected into term lists, even through constructs like for loops. /// /// ### Example |
