Skip to content

Commit fc4481e

Browse files
committed
binomのkの訳し漏れを追加
1 parent 5a2d6fa commit fc4481e

File tree

1 file changed

+1
-1
lines changed
  • crates/typst-library/src/foundations

1 file changed

+1
-1
lines changed

crates/typst-library/src/foundations/calc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ fn fact_impl(start: u64, end: u64) -> Option<i64> {
530530
pub fn binom(
531531
/// 全体の数。0または正の値である必要があります。
532532
n: u64,
533-
/// The lower coefficient. Must be non-negative.
533+
/// 下側の係数。0または正の値である必要があります。
534534
k: u64,
535535
) -> StrResult<i64> {
536536
Ok(binom_impl(n, k).ok_or_else(too_large)?)

0 commit comments

Comments
 (0)