Skip to content

Commit 3715c31

Browse files
Minor tweaks based on review comments
1 parent 1c34aa8 commit 3715c31

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

courses/rust_essentials/110_common_library_types/02-option.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Why Use "Option<T>"?
1515

1616
* Which can be difficult to find
1717

18-
* Variable is *always* its type
18+
* In Rust, a variable is *always* its type
1919

2020
* So the value is always valid
2121
* To allow for *unknown* we wrap the type in :rust:`Option`

courses/rust_essentials/180_modules/01-modules.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Big Picture
88

99
* Most applications reside in more than one file
1010

11-
* *Modules* are how to organize code
11+
* Rust uses *modules* to organize code
1212

1313
* Encapsulation
1414

0 commit comments

Comments
 (0)