@@ -5,18 +5,18 @@ errors in a particular way. Generally speaking, error handling is divided into
5
5
two broad categories: exceptions and return values. Rust opts for return
6
6
values.
7
7
8
- In this chapter , we intend to provide a comprehensive treatment of how to deal
8
+ In this section , we intend to provide a comprehensive treatment of how to deal
9
9
with errors in Rust. More than that, we will attempt to introduce error handling
10
10
one piece at a time so that you'll come away with a solid working knowledge of
11
11
how everything fits together.
12
12
13
13
When done naïvely, error handling in Rust can be verbose and annoying. This
14
- chapter will explore those stumbling blocks and demonstrate how to use the
14
+ section will explore those stumbling blocks and demonstrate how to use the
15
15
standard library to make error handling concise and ergonomic.
16
16
17
17
# Table of Contents
18
18
19
- This chapter is very long, mostly because we start at the very beginning with
19
+ This section is very long, mostly because we start at the very beginning with
20
20
sum types and combinators, and try to motivate the way Rust does error handling
21
21
incrementally. As such, programmers with experience in other expressive type
22
22
systems may want to jump around.
@@ -636,7 +636,7 @@ Thus far, we've looked at error handling where everything was either an
636
636
` Option ` and a ` Result ` ? Or what if you have a ` Result<T, Error1> ` and a
637
637
` Result<T, Error2> ` ? Handling * composition of distinct error types* is the next
638
638
challenge in front of us, and it will be the major theme throughout the rest of
639
- this chapter .
639
+ this section .
640
640
641
641
## Composing ` Option ` and ` Result `
642
642
@@ -648,7 +648,7 @@ Of course, in real code, things aren't always as clean. Sometimes you have a
648
648
mix of ` Option ` and ` Result ` types. Must we resort to explicit case analysis,
649
649
or can we continue using combinators?
650
650
651
- For now, let's revisit one of the first examples in this chapter :
651
+ For now, let's revisit one of the first examples in this section :
652
652
653
653
``` rust,should_panic
654
654
use std::env;
@@ -1319,7 +1319,7 @@ and [`cause`](../std/error/trait.Error.html#method.cause), but the
1319
1319
limitation remains: ` Box<Error> ` is opaque. (N.B. This isn't entirely
1320
1320
true because Rust does have runtime reflection, which is useful in
1321
1321
some scenarios that are [ beyond the scope of this
1322
- chapter ] ( https://crates.io/crates/error ) .)
1322
+ section ] ( https://crates.io/crates/error ) .)
1323
1323
1324
1324
It's time to revisit our custom ` CliError ` type and tie everything together.
1325
1325
@@ -1486,7 +1486,7 @@ and [`fmt::Result`](../std/fmt/type.Result.html).
1486
1486
1487
1487
# Case study: A program to read population data
1488
1488
1489
- This chapter was long, and depending on your background, it might be
1489
+ This section was long, and depending on your background, it might be
1490
1490
rather dense. While there is plenty of example code to go along with
1491
1491
the prose, most of it was specifically designed to be pedagogical. So,
1492
1492
we're going to do something new: a case study.
@@ -1512,7 +1512,7 @@ and [`rustc-serialize`](https://crates.io/crates/rustc-serialize) crates.
1512
1512
1513
1513
We're not going to spend a lot of time on setting up a project with
1514
1514
Cargo because it is already covered well in [ the Cargo
1515
- chapter ] ( ../book/hello-cargo.html ) and [ Cargo's documentation] [ 14 ] .
1515
+ section ] ( ../book/hello-cargo.html ) and [ Cargo's documentation] [ 14 ] .
1516
1516
1517
1517
To get started from scratch, run ` cargo new --bin city-pop ` and make sure your
1518
1518
` Cargo.toml ` looks something like this:
@@ -2108,7 +2108,7 @@ handling.
2108
2108
2109
2109
# The Short Story
2110
2110
2111
- Since this chapter is long, it is useful to have a quick summary for error
2111
+ Since this section is long, it is useful to have a quick summary for error
2112
2112
handling in Rust. These are some good “rules of thumb." They are emphatically
2113
2113
* not* commandments. There are probably good reasons to break every one of these
2114
2114
heuristics!
0 commit comments