Skip to content

Commit 4007fde

Browse files
committed
fix spelling, fix #17
1 parent 10c37db commit 4007fde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

steps/8/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Before we continue, let's take a moment to go over some Rust which we will be us
1212

1313
### Option and Option Handling
1414

15-
One of the key principals of Rust is to remove undefined behavior from your code.
15+
One of the key principles of Rust is to remove undefined behavior from your code.
1616

1717
One way undefined behavior can happen is by allowing states like `null` to exist. Rust prevents this by having the user explicitly handle all cases, and this is where the creation of the `Option` type comes in. Spend a moment to re-review [the section on `Option`](https://doc.rust-lang.org/book/ch06-01-defining-an-enum.html?highlight=option#the-option-enum-and-its-advantages-over-null-values) from the Rust book if needed.
1818

0 commit comments

Comments
 (0)