Adjust margins for paperback version. Ensure nothing breaches the right margin.

This commit is contained in:
LukeMathWalker
2024-08-07 15:39:35 +02:00
parent 05e3efd298
commit f9a1d427b2
8 changed files with 19 additions and 15 deletions

View File

@@ -97,8 +97,8 @@ Ownership can be transferred.
If you own a value, for example, you can transfer ownership to another variable:
```rust
let a = "hello, world".to_string(); // <--- `a` is the owner of the String
let b = a; // <--- `b` is now the owner of the String
let a = "hello, world".to_string(); // <- `a` is the owner of the String
let b = a; // <- `b` is now the owner of the String
```
Rust's ownership system is baked into the type system: each function has to declare in its signature