[READ-ONLY] Mirror of https://github.com/probablykasper/cpc. Text calculator with support for units and conversion cpc.kasper.space
calculator cli conversion converter library math package units units-converter wasm website
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix extra space in output

Kasper (Jun 30, 2026, 2:33 PM +0200) 1cd1998b 73e3a87d

+4 -1
+4 -1
src/lib.rs
··· 114 114 if unit.1 >= 0 { 115 115 continue; 116 116 } 117 - s.push_str(" / "); 117 + match s.len() { 118 + 0 => s.push_str("/ "), 119 + _ => s.push_str(" / "), 120 + } 118 121 s.push_str(unit.0.singular()); 119 122 if unit.1.abs() >= 2 { 120 123 s.push_str("^");