Skip to content

Commit ea054bb

Browse files
authored
Merge pull request #244 from JohnTitor/some-tweaks
Some tweaks
2 parents 9e9ee0a + e948943 commit ea054bb

File tree

3 files changed

+49
-45
lines changed

3 files changed

+49
-45
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
*.html
22
book
3+
4+
# linkcheck stuff
5+
linkcheck
6+
linkchecker
7+
linkcheck.sh

src/SUMMARY.md

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -3,58 +3,58 @@
33
[Introduction](README.md)
44

55
* [Meet Safe and Unsafe](meet-safe-and-unsafe.md)
6-
* [How Safe and Unsafe Interact](safe-unsafe-meaning.md)
7-
* [What Unsafe Can Do](what-unsafe-does.md)
8-
* [Working with Unsafe](working-with-unsafe.md)
6+
* [How Safe and Unsafe Interact](safe-unsafe-meaning.md)
7+
* [What Unsafe Can Do](what-unsafe-does.md)
8+
* [Working with Unsafe](working-with-unsafe.md)
99
* [Data Layout](data.md)
10-
* [repr(Rust)](repr-rust.md)
11-
* [Exotically Sized Types](exotic-sizes.md)
12-
* [Other reprs](other-reprs.md)
10+
* [repr(Rust)](repr-rust.md)
11+
* [Exotically Sized Types](exotic-sizes.md)
12+
* [Other reprs](other-reprs.md)
1313
* [Ownership](ownership.md)
14-
* [References](references.md)
15-
* [Aliasing](aliasing.md)
16-
* [Lifetimes](lifetimes.md)
17-
* [Limits of Lifetimes](lifetime-mismatch.md)
18-
* [Lifetime Elision](lifetime-elision.md)
19-
* [Unbounded Lifetimes](unbounded-lifetimes.md)
20-
* [Higher-Rank Trait Bounds](hrtb.md)
21-
* [Subtyping and Variance](subtyping.md)
22-
* [Drop Check](dropck.md)
23-
* [PhantomData](phantom-data.md)
24-
* [Splitting Borrows](borrow-splitting.md)
14+
* [References](references.md)
15+
* [Aliasing](aliasing.md)
16+
* [Lifetimes](lifetimes.md)
17+
* [Limits of Lifetimes](lifetime-mismatch.md)
18+
* [Lifetime Elision](lifetime-elision.md)
19+
* [Unbounded Lifetimes](unbounded-lifetimes.md)
20+
* [Higher-Rank Trait Bounds](hrtb.md)
21+
* [Subtyping and Variance](subtyping.md)
22+
* [Drop Check](dropck.md)
23+
* [PhantomData](phantom-data.md)
24+
* [Splitting Borrows](borrow-splitting.md)
2525
* [Type Conversions](conversions.md)
26-
* [Coercions](coercions.md)
27-
* [The Dot Operator](dot-operator.md)
28-
* [Casts](casts.md)
29-
* [Transmutes](transmutes.md)
26+
* [Coercions](coercions.md)
27+
* [The Dot Operator](dot-operator.md)
28+
* [Casts](casts.md)
29+
* [Transmutes](transmutes.md)
3030
* [Uninitialized Memory](uninitialized.md)
31-
* [Checked](checked-uninit.md)
32-
* [Drop Flags](drop-flags.md)
33-
* [Unchecked](unchecked-uninit.md)
31+
* [Checked](checked-uninit.md)
32+
* [Drop Flags](drop-flags.md)
33+
* [Unchecked](unchecked-uninit.md)
3434
* [Ownership Based Resource Management](obrm.md)
35-
* [Constructors](constructors.md)
36-
* [Destructors](destructors.md)
37-
* [Leaking](leaking.md)
35+
* [Constructors](constructors.md)
36+
* [Destructors](destructors.md)
37+
* [Leaking](leaking.md)
3838
* [Unwinding](unwinding.md)
39-
* [Exception Safety](exception-safety.md)
40-
* [Poisoning](poisoning.md)
39+
* [Exception Safety](exception-safety.md)
40+
* [Poisoning](poisoning.md)
4141
* [Concurrency](concurrency.md)
42-
* [Races](races.md)
43-
* [Send and Sync](send-and-sync.md)
44-
* [Atomics](atomics.md)
42+
* [Races](races.md)
43+
* [Send and Sync](send-and-sync.md)
44+
* [Atomics](atomics.md)
4545
* [Implementing Vec](vec.md)
46-
* [Layout](vec-layout.md)
47-
* [Allocating](vec-alloc.md)
48-
* [Push and Pop](vec-push-pop.md)
49-
* [Deallocating](vec-dealloc.md)
50-
* [Deref](vec-deref.md)
51-
* [Insert and Remove](vec-insert-remove.md)
52-
* [IntoIter](vec-into-iter.md)
53-
* [RawVec](vec-raw.md)
54-
* [Drain](vec-drain.md)
55-
* [Handling Zero-Sized Types](vec-zsts.md)
56-
* [Final Code](vec-final.md)
46+
* [Layout](vec-layout.md)
47+
* [Allocating](vec-alloc.md)
48+
* [Push and Pop](vec-push-pop.md)
49+
* [Deallocating](vec-dealloc.md)
50+
* [Deref](vec-deref.md)
51+
* [Insert and Remove](vec-insert-remove.md)
52+
* [IntoIter](vec-into-iter.md)
53+
* [RawVec](vec-raw.md)
54+
* [Drain](vec-drain.md)
55+
* [Handling Zero-Sized Types](vec-zsts.md)
56+
* [Final Code](vec-final.md)
5757
* [Implementing Arc and Mutex](arc-and-mutex.md)
5858
* [FFI](ffi.md)
5959
* [Beneath `std`](beneath-std.md)
60-
* [#[panic_handler]](panic-handler.md)
60+
* [#[panic_handler]](panic-handler.md)

src/chapter_1.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)