We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a2d6fa commit fc4481eCopy full SHA for fc4481e
crates/typst-library/src/foundations/calc.rs
@@ -530,7 +530,7 @@ fn fact_impl(start: u64, end: u64) -> Option<i64> {
530
pub fn binom(
531
/// 全体の数。0または正の値である必要があります。
532
n: u64,
533
- /// The lower coefficient. Must be non-negative.
+ /// 下側の係数。0または正の値である必要があります。
534
k: u64,
535
) -> StrResult<i64> {
536
Ok(binom_impl(n, k).ok_or_else(too_large)?)
0 commit comments