Skip to content

Commit ddb4f54

Browse files
committed
Fix typo
1 parent 1ca89ae commit ddb4f54

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

12_integrated_testing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1939,7 +1939,7 @@ diff -uNr 11_exceptions_part1_groundwork/tests/02_exception_sync_page_fault.rs 1
19391939
+
19401940
+/// Overwrites libkernel's `panic_wait::_panic_exit()` so that it returns a "success" code.
19411941
+///
1942-
+/// In this test, teaching the panic is a success, because it is called from the synchronous
1942+
+/// In this test, reaching the panic is a success, because it is called from the synchronous
19431943
+/// exception handler, which is what this test wants to achieve.
19441944
+///
19451945
+/// It also means that this integration test can not use any other code that calls panic!() directly

12_integrated_testing/tests/02_exception_sync_page_fault.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/// Overwrites libkernel's `panic_wait::_panic_exit()` so that it returns a "success" code.
1212
///
13-
/// In this test, teaching the panic is a success, because it is called from the synchronous
13+
/// In this test, reaching the panic is a success, because it is called from the synchronous
1414
/// exception handler, which is what this test wants to achieve.
1515
///
1616
/// It also means that this integration test can not use any other code that calls panic!() directly

13_exceptions_part2_peripheral_IRQs/tests/02_exception_sync_page_fault.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/// Overwrites libkernel's `panic_wait::_panic_exit()` so that it returns a "success" code.
1212
///
13-
/// In this test, teaching the panic is a success, because it is called from the synchronous
13+
/// In this test, reaching the panic is a success, because it is called from the synchronous
1414
/// exception handler, which is what this test wants to achieve.
1515
///
1616
/// It also means that this integration test can not use any other code that calls panic!() directly

14_virtual_mem_part2_mmio_remap/tests/02_exception_sync_page_fault.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/// Overwrites libkernel's `panic_wait::_panic_exit()` so that it returns a "success" code.
1212
///
13-
/// In this test, teaching the panic is a success, because it is called from the synchronous
13+
/// In this test, reaching the panic is a success, because it is called from the synchronous
1414
/// exception handler, which is what this test wants to achieve.
1515
///
1616
/// It also means that this integration test can not use any other code that calls panic!() directly

15_virtual_mem_part3_precomputed_tables/tests/02_exception_sync_page_fault.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/// Overwrites libkernel's `panic_wait::_panic_exit()` so that it returns a "success" code.
1212
///
13-
/// In this test, teaching the panic is a success, because it is called from the synchronous
13+
/// In this test, reaching the panic is a success, because it is called from the synchronous
1414
/// exception handler, which is what this test wants to achieve.
1515
///
1616
/// It also means that this integration test can not use any other code that calls panic!() directly

16_virtual_mem_part4_higher_half_kernel/tests/02_exception_sync_page_fault.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/// Overwrites libkernel's `panic_wait::_panic_exit()` so that it returns a "success" code.
1212
///
13-
/// In this test, teaching the panic is a success, because it is called from the synchronous
13+
/// In this test, reaching the panic is a success, because it is called from the synchronous
1414
/// exception handler, which is what this test wants to achieve.
1515
///
1616
/// It also means that this integration test can not use any other code that calls panic!() directly

0 commit comments

Comments
 (0)