File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
courses/rust_essentials/050_tuples_and_arrays Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments