Skip to content

Commit fe6d50f

Browse files
Update crates/typst-library/src/layout/columns.rs
Co-authored-by: Shunsuke Kimura <[email protected]>
1 parent a8d0e21 commit fe6d50f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/typst-library/src/layout/columns.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use crate::engine::Engine;
55
use crate::foundations::{elem, Content, NativeElement, Packed, Show, StyleChain};
66
use crate::layout::{BlockElem, Length, Ratio, Rel};
77

8-
/// 複数の同じ大きさを持つ段への領域の分割
8+
/// 領域を等幅の複数段に分割
99
///
1010
/// `column`関数を用いることで、あらゆるコンテナの内部を複数の段に分割することができます。
1111
/// 現在、段の高さのバランスは取れません。
@@ -42,7 +42,7 @@ pub struct ColumnsElem {
4242
#[default(NonZeroUsize::new(2).unwrap())]
4343
pub count: NonZeroUsize,
4444

45-
/// 各段の間の大きさ
45+
/// 段間
4646
#[resolve]
4747
#[default(Ratio::new(0.04).into())]
4848
pub gutter: Rel<Length>,

0 commit comments

Comments
 (0)