@@ -144,7 +144,7 @@ that at most one writer or multiple readers can access the data at any one time.
144
144
If you wish to learn more about ownership in Rust, start with the chapter in the
145
145
Book:
146
146
147
- https://doc.rust-lang.org/book/ownership.html
147
+ https://doc.rust-lang.org/book/first-edition/ ownership.html
148
148
"## ,
149
149
150
150
E0383 : r##"
@@ -366,8 +366,8 @@ let mut a = &mut i;
366
366
367
367
Please note that in rust, you can either have many immutable references, or one
368
368
mutable reference. Take a look at
369
- https://doc.rust-lang.org/stable/ book/references-and-borrowing.html for more
370
- information. Example:
369
+ https://doc.rust-lang.org/book/first-edition/ references-and-borrowing.html
370
+ for more information. Example:
371
371
372
372
373
373
```
@@ -533,7 +533,7 @@ fn foo(a: &mut i32) {
533
533
```
534
534
535
535
For more information on the rust ownership system, take a look at
536
- https://doc.rust-lang.org/stable/ book/references-and-borrowing.html.
536
+ https://doc.rust-lang.org/book/first-edition /references-and-borrowing.html.
537
537
"## ,
538
538
539
539
E0503 : r##"
@@ -589,7 +589,7 @@ fn main() {
589
589
```
590
590
591
591
You can find more information about borrowing in the rust-book:
592
- http://doc.rust-lang.org/stable/ book/references-and-borrowing.html
592
+ http://doc.rust-lang.org/book/first-edition /references-and-borrowing.html
593
593
"## ,
594
594
595
595
E0504 : r##"
@@ -773,7 +773,7 @@ fn main() {
773
773
```
774
774
775
775
You can find more information about borrowing in the rust-book:
776
- http://doc.rust-lang.org/stable/ book/references-and-borrowing.html
776
+ http://doc.rust-lang.org/book/first-edition /references-and-borrowing.html
777
777
"## ,
778
778
779
779
E0506 : r##"
@@ -972,7 +972,7 @@ fn main() {
972
972
```
973
973
974
974
You can find more information about borrowing in the rust-book:
975
- http://doc.rust-lang.org/stable/ book/references-and-borrowing.html
975
+ http://doc.rust-lang.org/book/first-edition /references-and-borrowing.html
976
976
"## ,
977
977
978
978
E0508 : r##"
0 commit comments