summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-10-24 21:58:05 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-10-24 21:58:58 +0300
commit4a9c60cdfb509b61dd71dbaec36293239e6e53cc (patch)
tree0f0526dccaf3b6f5f04d240ac246ed36b679c061
parent81a1e172383ca75a2e089cdf9c3b97b1e5c2463c (diff)
downloadmicropython-4a9c60cdfb509b61dd71dbaec36293239e6e53cc.tar.gz
micropython-4a9c60cdfb509b61dd71dbaec36293239e6e53cc.zip
stmhal: Typo fix in comment.
-rw-r--r--stmhal/usbd_cdc_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/usbd_cdc_interface.c b/stmhal/usbd_cdc_interface.c
index 2bb8ddb95d..61553e27d3 100644
--- a/stmhal/usbd_cdc_interface.c
+++ b/stmhal/usbd_cdc_interface.c
@@ -352,7 +352,7 @@ static int8_t CDC_Itf_Receive(uint8_t* Buf, uint32_t *Len) {
delta_len = *Len;
} else {
- // filter out sepcial interrupt character from the buffer
+ // filter out special interrupt character from the buffer
bool char_found = false;
uint8_t *dest = Buf;
uint8_t *src = Buf;