Skip to content

Commit 3a19e75

Browse files
authored
Merge branch 'DioxusLabs:main' into builder-pattern-interface
2 parents eee08c1 + f8a32fc commit 3a19e75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/style/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,13 +255,13 @@ impl Default for Position {
255255
/// - `max_size`
256256
/// - `flex_basis`
257257
///
258-
/// See h<ttps://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing>
258+
/// See <https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing>
259259
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
260260
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
261261
pub enum BoxSizing {
262-
/// Size styles such size, min_size, max_size specify the box's "content box" (the size excluding padding/border/margin)
263-
BorderBox,
264262
/// Size styles such size, min_size, max_size specify the box's "border box" (the size excluding margin but including padding/border)
263+
BorderBox,
264+
/// Size styles such size, min_size, max_size specify the box's "content box" (the size excluding padding/border/margin)
265265
ContentBox,
266266
}
267267

0 commit comments

Comments
 (0)