Skip to content

Commit 417c29c

Browse files
committed
docs(number): remove margin explanations because are confusing
1 parent 08473e6 commit 417c29c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/number.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,6 @@ export function convertPayRate(
215215
* margin(null, 100); // undefined
216216
* margin(100, null); // undefined
217217
* ```
218-
*
219-
* @param base Cost (or Base Value) – the original or maximum reference value (e.g. cost price, max rate).
220-
* @param actual Current or Actual Value – the value you compare against the base (e.g. selling price, current rate).
221218
*/
222219
export function margin(base: Maybe<number>, actual: Maybe<number>) {
223220
if (actual == null || base == null) return undefined;

0 commit comments

Comments
 (0)