File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -56,9 +56,10 @@ An unknown "kind" was specified for a link attribute. Erroneous code example:
56
56
```
57
57
58
58
Please specify a valid "kind" value, from one of the following:
59
- * static
60
- * dylib
61
- * framework
59
+
60
+ - static
61
+ - dylib
62
+ - framework
62
63
"## ,
63
64
64
65
E0459 : r##"
Original file line number Diff line number Diff line change @@ -1377,8 +1377,9 @@ let x = |_| {}; // error: cannot determine a type for this expression
1377
1377
```
1378
1378
1379
1379
You have two possibilities to solve this situation:
1380
- * Give an explicit definition of the expression
1381
- * Infer the expression
1380
+
1381
+ - Give an explicit definition of the expression
1382
+ - Infer the expression
1382
1383
1383
1384
Examples:
1384
1385
Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ fn main() {}
65
65
66
66
The `inline` attribute only supports two arguments:
67
67
68
- * always
69
- * never
68
+ - always
69
+ - never
70
70
71
71
All other arguments given to the `inline` attribute will return this error.
72
72
Example:
@@ -121,9 +121,9 @@ pub fn main() {}
121
121
122
122
The `cfg` attribute supports only three kinds of predicates:
123
123
124
- * any
125
- * all
126
- * not
124
+ - any
125
+ - all
126
+ - not
127
127
128
128
Example:
129
129
You can’t perform that action at this time.
0 commit comments