Skip to content

Commit

Permalink
Reword ... explanation to include the word deprecated, list that first
Browse files Browse the repository at this point in the history
  • Loading branch information
carols10cents committed Jul 3, 2021
1 parent 1ec8817 commit 1a4e07a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appendix-02-operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ overload that operator is listed.
| `..=` | `..=expr`, `expr..=expr` | Right-inclusive range literal | |
| `..` | `..expr` | Struct literal update syntax | |
| `..` | `variant(x, ..)`, `struct_type { x, .. }` | “And the rest” pattern binding | |
| `...` | `expr...expr` | In a pattern: inclusive range pattern (now replaced with `..=`) | |
| `...` | `expr...expr` | (Deprecated, use `..=` instead) In a pattern: inclusive range pattern | |
| `/` | `expr / expr` | Arithmetic division | `Div` |
| `/=` | `var /= expr` | Arithmetic division and assignment | `DivAssign` |
| `:` | `pat: type`, `ident: type` | Constraints | |
Expand Down

0 comments on commit 1a4e07a

Please sign in to comment.