Skip to content

Commit 424c4d9

Browse files
committed
Fix typos in the FPGA CI Test Shield component
Fix some typos.
1 parent a4738fa commit 424c4d9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/testing/COMPONENT_FPGA_CI_TEST_SHIELD/MbedTester.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
* // Map D6 to LogicalPinGPIO0
5656
* tester.pin_map_set(D6, MbedTester::LogicalPinGPIO0);
5757
*
58-
* // Toggle the LED
58+
* // Toggle pin D6
5959
* int toggle = 0;
6060
* while (1) {
6161
* tester.gpio_write(MbedTester::LogicalPinGPIO0, toggle, true);

components/testing/COMPONENT_FPGA_CI_TEST_SHIELD/test_utils.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ void test_all_peripherals(std::list<PortType> &matched_ports, std::list<PortType
234234
* - FormFactorType - The form factor to test on
235235
* - f - The test function to run.
236236
*
237-
* This function is calls the test function multiple times with
237+
* This function calls the test function multiple times with
238238
* the appropriate combinations of pins.
239239
*/
240240
template<typename PortType, typename FormFactorType, typename PortType::TestFunctionType f>
@@ -255,7 +255,7 @@ void all_ports()
255255
* - FormFactorType - The form factor to test on
256256
* - f - The test function to run.
257257
*
258-
* This function is calls the test function once for each peripheral
258+
* This function calls the test function once for each peripheral
259259
* of the given type.
260260
*/
261261
template<typename PortType, typename FormFactorType, typename PortType::TestFunctionType f>
@@ -280,7 +280,7 @@ void all_peripherals()
280280
* - FormFactorType - The form factor to test on
281281
* - f - The test function to run.
282282
*
283-
* This function is calls the test function once for one peripheral
283+
* This function calls the test function once for one peripheral
284284
* of the given type.
285285
*/
286286
template<typename PortType, typename FormFactorType, typename PortType::TestFunctionType f>

0 commit comments

Comments
 (0)