From 9008b939626616ed429d2287ed79fe1e646a0495 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Fri, 28 Oct 2016 20:12:24 -0700 Subject: [PATCH] atmel-samd: Fix typo in ASF. --- atmel-samd/asf/common2/services/delay/sam0/systick_counter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atmel-samd/asf/common2/services/delay/sam0/systick_counter.c b/atmel-samd/asf/common2/services/delay/sam0/systick_counter.c index 9ddec263a1..fcd05c670f 100644 --- a/atmel-samd/asf/common2/services/delay/sam0/systick_counter.c +++ b/atmel-samd/asf/common2/services/delay/sam0/systick_counter.c @@ -90,7 +90,7 @@ void delay_cycles_ms( uint32_t n) { while (n--) { - /* Devide up to blocks of 1ms */ + /* Divide up to blocks of 1ms */ delay_cycles(cycles_per_ms); } }