Skip to content

Commit e585557

Browse files
Revert "Hint on how to type the ÷ sign (#38720)" (#38756)
This reverts commit b58e879.
1 parent ef6ef82 commit e585557

File tree

2 files changed

+13
-15
lines changed

2 files changed

+13
-15
lines changed

doc/src/manual/mathematical-operations.md

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,25 @@ collection of standard mathematical functions.
99
The following [arithmetic operators](https://en.wikipedia.org/wiki/Arithmetic#Arithmetic_operations)
1010
are supported on all primitive numeric types:
1111

12-
| Expression | Name | Description |
13-
|:---------- |:-------------- |:----------------------------------------|
14-
| `+x` | unary plus | the identity operation |
15-
| `-x` | unary minus | maps values to their additive inverses |
16-
| `x + y` | binary plus | performs addition |
17-
| `x - y` | binary minus | performs subtraction |
18-
| `x * y` | times | performs multiplication |
19-
| `x / y` | divide | performs division |
20-
| `x ÷ y` | integer divide | x / y, truncated to an integer |
21-
| `x \ y` | inverse divide | equivalent to `y / x` |
22-
| `x ^ y` | power | raises `x` to the `y`th power |
23-
| `x % y` | remainder | equivalent to `rem(x,y)` |
12+
| Expression | Name | Description |
13+
|:---------- |:-------------- |:-------------------------------------- |
14+
| `+x` | unary plus | the identity operation |
15+
| `-x` | unary minus | maps values to their additive inverses |
16+
| `x + y` | binary plus | performs addition |
17+
| `x - y` | binary minus | performs subtraction |
18+
| `x * y` | times | performs multiplication |
19+
| `x / y` | divide | performs division |
20+
| `x ÷ y` | integer divide | x / y, truncated to an integer |
21+
| `x \ y` | inverse divide | equivalent to `y / x` |
22+
| `x ^ y` | power | raises `x` to the `y`th power |
23+
| `x % y` | remainder | equivalent to `rem(x,y)` |
2424

2525
A numeric literal placed directly before an identifier or parentheses, e.g. `2x` or `2(x+y)`, is treated as a multiplication, except with higher precedence than other binary operations. See [Numeric Literal Coefficients](@ref man-numeric-literal-coefficients) for details.
2626

2727
Julia's promotion system makes arithmetic operations on mixtures of argument types "just work"
2828
naturally and automatically. See [Conversion and Promotion](@ref conversion-and-promotion) for details of the promotion
2929
system.
3030

31-
The ÷ sign can be conveniently typed by writing `\div<tab>` to the REPL or Julia IDE. See the [manual section on Unicode input](@ref man-unicode-input) for more information.
32-
3331
Here are some simple examples using arithmetic operators:
3432

3533
```jldoctest

doc/src/manual/unicode-input.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [Unicode Input](@id man-unicode-input)
1+
# Unicode Input
22

33
The following table lists Unicode characters that can be entered via
44
tab completion of LaTeX-like abbreviations in the Julia REPL (and

0 commit comments

Comments
 (0)