From 4e1f7c1cb8d329c95decfbe81a0b48d154433b18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Fri, 15 May 2020 14:36:39 +0200 Subject: [PATCH] [python] Fix comment --- python/port/port.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/port/port.cpp b/python/port/port.cpp index fd86492db..198110fb0 100644 --- a/python/port/port.cpp +++ b/python/port/port.cpp @@ -155,8 +155,8 @@ void MicroPython::registerScriptProvider(ScriptProvider * s) { } void MicroPython::collectRootsAtAddress(char * address, int byteLength) { - /* All pointers on the stack are aligned on sizeof(void *), as asserted. - * This is a consequence of the alignment requireduirements of compilers as long + /* All addresses stored on the stack are aligned on sizeof(void *), as + * asserted. This is a consequence of the alignment requirements of compilers * (Cf http://www.catb.org/esr/structure-packing/). */ assert(((unsigned long)address) % ((unsigned long)sizeof(void *)) == 0); assert(byteLength % sizeof(void *) == 0);