Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions crates/typst-library/src/math/frac.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,20 @@ pub struct FracElem {
pub denom: Content,
}

/// A binomial expression.
/// 二項係数。
///
/// # Example
/// #
/// ```example
/// $ binom(n, k) $
/// $ binom(n, k_1, k_2, k_3, ..., k_m) $
/// ```
#[elem(title = "Binomial", Mathy)]
pub struct BinomElem {
/// The binomial's upper index.
/// 二項係数の上側の数。
#[required]
pub upper: Content,

/// The binomial's lower index.
/// 二項係数の下側の数。
#[required]
#[variadic]
#[parse(
Expand Down
2 changes: 1 addition & 1 deletion website/translation-status.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"/docs/reference/math/": "untranslated",
"/docs/reference/math/accent/": "translated",
"/docs/reference/math/attach/": "translated",
"/docs/reference/math/binom/": "untranslated",
"/docs/reference/math/binom/": "translated",
"/docs/reference/math/cancel/": "translated",
"/docs/reference/math/cases/": "translated",
"/docs/reference/math/class/": "untranslated",
Expand Down