Skip to content

Commit be6b80b

Browse files
Rephrasing from feedback
1 parent d54f59d commit be6b80b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

courses/rust_essentials/050_tuples_and_arrays/01_arrays.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Safety and Initialization
4040

4141
**Safety**
4242

43-
- Accesses are **checked at runtime** for being out-of-bounds
43+
- Compile-time and runtime **out-of-bounds checks**
4444
- Accessing an element beyond the defined length will cause a *panic*
4545
- A *panic* is a form of program termination
4646

courses/rust_essentials/050_tuples_and_arrays/03_destructuring.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Irrefutable Patterns with Tuples
3535
- Irrefutable tuple pattern = **guaranteed match**
3636
- Used in :rust:`let` statements
3737
- :rust:`let` bindings must always succeed
38-
- Pattern **must** always match the data structure
38+
- Pattern must **always** match the data structure
3939

4040
.. code:: rust
4141

0 commit comments

Comments
 (0)