File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -3286,16 +3286,15 @@ Sign-Related Functions: ''abs()'', ''sign()''</h3>
3286
3286
contains one [=calculation=] A,
3287
3287
and returns the absolute value of A,
3288
3288
as the same [=CSSNumericValue/type=] as the input:
3289
- if A is positive, just A again;
3290
- if A is zero, 0⁺;
3291
- if A is negative, ''-1 * A'' .
3289
+ if A's numeric value is positive or 0⁺, just A again;
3290
+ otherwise ''-1 * A'' .
3292
3291
3293
3292
The <dfn lt="sign()">sign(A)</dfn> function
3294
3293
contains one [=calculation=] A,
3295
- and returns -1 if A is negative,
3296
- +1 if A is positive,
3297
- 0⁺ if A is 0⁺,
3298
- and 0⁻ if A is 0⁻.
3294
+ and returns -1 if A's numeric value is negative,
3295
+ +1 if A's numeric value is positive,
3296
+ 0⁺ if A's numeric value is 0⁺,
3297
+ and 0⁻ if A's numeric value is 0⁻.
3299
3298
3300
3299
Note: Both of these functions operate on the fully simplified/resolved form of their arguments,
3301
3300
which may give unintuitive results at first glance.
You can’t perform that action at this time.
0 commit comments