File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Language
13
13
- [ You can now match against literals in macros with the ` literal `
14
14
specifier.] [ 56072 ] This will match against a literal of any type.
15
15
E.g. ` 1 ` , ` 'A' ` , ` "Hello World" `
16
- - [ Self can now be used as a constructor and pattern.] [ 56365 ] E.g.
16
+ - [ Self can now be used as a constructor and pattern for unit and tuple structs .] [ 56365 ] E.g.
17
17
``` rust
18
18
struct Point (i32 , i32 );
19
19
@@ -34,7 +34,7 @@ Language
34
34
``` rust
35
35
enum List <T >
36
36
where
37
- Self : PartialOrd <Self > // can write `Self` instead of `List<T>`
37
+ Self : PartialOrd <Self > // can write `Self` instead of `List<T>`
38
38
{
39
39
Nil ,
40
40
Cons (T , Box <Self >) // likewise here
@@ -47,7 +47,7 @@ Compiler
47
47
--------
48
48
- [ The default allocator has changed from jemalloc to the default allocator on
49
49
your system.] [ 55238 ] The compiler itself on Linux & macOS will still use
50
- jemalloc, but programs compiled with them will use the system allocator.
50
+ jemalloc, but programs compiled with it will use the system allocator.
51
51
- [ Added the ` aarch64-pc-windows-msvc ` target.] [ 55702 ]
52
52
53
53
Libraries
You can’t perform that action at this time.
0 commit comments