Skip to content

Commit

Permalink
fix link to grid example and typo in style docs
Browse files Browse the repository at this point in the history
  • Loading branch information
HazelTheWitch committed Jan 5, 2025
1 parent a4dc5c0 commit 483aab0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
//!
//! - [basic](https://github.com/DioxusLabs/taffy/blob/main/examples/basic.rs)
//! - [flexbox_gap](https://github.com/DioxusLabs/taffy/blob/main/examples/flexbox_gap.rs)
//! - [grid_holy_grail](https://github.com/DioxusLabs/taffy/blob/main/examples/basic.rs)
//! - [grid_holy_grail](https://github.com/DioxusLabs/taffy/blob/main/examples/grid_holy_grail.rs)
//! - [measure](https://github.com/DioxusLabs/taffy/blob/main/examples/measure.rs)
//! - [cosmic_text](https://github.com/DioxusLabs/taffy/blob/main/examples/cosmic_text.rs)
//!
Expand Down
2 changes: 1 addition & 1 deletion src/style/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ pub struct Style {
/// How should content contained within this item be aligned in the cross/block axis
#[cfg(any(feature = "flexbox", feature = "grid"))]
pub align_content: Option<AlignContent>,
/// How should contained within this item be aligned in the main/inline axis
/// How should content contained within this item be aligned in the main/inline axis
#[cfg(any(feature = "flexbox", feature = "grid"))]
pub justify_content: Option<JustifyContent>,
/// How large should the gaps between items in a grid or flex container be?
Expand Down

0 comments on commit 483aab0

Please sign in to comment.