Skip to content

Commit c593e1f

Browse files
Fix the displaying of mod2pi(x) description (#36909)
There was some extra space
1 parent b00a0c6 commit c593e1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/manual/mathematical-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ See [Conversion and Promotion](@ref conversion-and-promotion) for how to define
505505
| [`rem(x,y)`](@ref) | remainder; satisfies `x == div(x,y)*y + rem(x,y)`; sign matches `x` |
506506
| [`mod(x,y)`](@ref) | modulus; satisfies `x == fld(x,y)*y + mod(x,y)`; sign matches `y` |
507507
| [`mod1(x,y)`](@ref) | `mod` with offset 1; returns `r∈(0,y]` for `y>0` or `r∈[y,0)` for `y<0`, where `mod(r, y) == mod(x, y)` |
508-
| [`mod2pi(x)`](@ref) | modulus with respect to 2pi; `0 <= mod2pi(x)   < 2pi` |
508+
| [`mod2pi(x)`](@ref) | modulus with respect to 2pi; `0 <= mod2pi(x) < 2pi` |
509509
| [`divrem(x,y)`](@ref) | returns `(div(x,y),rem(x,y))` |
510510
| [`fldmod(x,y)`](@ref) | returns `(fld(x,y),mod(x,y))` |
511511
| [`gcd(x,y...)`](@ref) | greatest positive common divisor of `x`, `y`,... |

0 commit comments

Comments
 (0)