You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/identifiers.md
-1
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,6 @@ Identifiers are restricted to the ASCII subset of [`XID_Start`] and [`XID_Contin
56
56
r[ident.normalization]
57
57
## Normalization
58
58
59
-
60
59
Identifiers are normalized using Normalization Form C (NFC) as defined in [Unicode Standard Annex #15][UAX15]. Two identifiers are equal if their NFC forms are equal.
61
60
62
61
[Procedural][proc-macro] and [declarative][mbe] macros receive normalized identifiers in their input.
Copy file name to clipboardExpand all lines: src/statements-and-expressions.md
-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,6 @@
1
1
r[stmt-expr]
2
2
# Statements and expressions
3
3
4
-
5
4
Rust is _primarily_ an expression language.
6
5
This means that most forms of value-producing or effect-causing evaluation are directed by the uniform syntax category of _expressions_.
7
6
Each kind of expression can typically _nest_ within each other kind of expression, and rules for evaluation of expressions involve specifying both the value produced by the expression and the order in which its sub-expressions are themselves evaluated.
Copy file name to clipboardExpand all lines: src/trait-bounds.md
-2
Original file line number
Diff line number
Diff line change
@@ -120,7 +120,6 @@ Trait and lifetime bounds are also used to name [trait objects].
120
120
r[bound.sized]
121
121
## `?Sized`
122
122
123
-
124
123
`?` is only used to relax the implicit [`Sized`] trait bound for [type parameters] or [associated types].
125
124
`?Sized` may not be used as a bound for other types.
126
125
@@ -270,7 +269,6 @@ impl<'a, T> Trait<'a, T> for &'a T {}
270
269
r[bound.use]
271
270
## Use bounds
272
271
273
-
274
272
Certain bounds lists may include a `use<..>` bound to control which generic parameters are captured by the `impl Trait`[abstract return type]. See [precise capturing] for more details.
0 commit comments