From 6eab78746e34e8c746c2ba742a6c17529c9f699e Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Thu, 2 Dec 2021 11:23:16 +0100 Subject: [PATCH] Fix wording --- stm32data/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stm32data/__main__.py b/stm32data/__main__.py index fa2979a..dab26c0 100755 --- a/stm32data/__main__.py +++ b/stm32data/__main__.py @@ -1037,8 +1037,8 @@ def parse_rcc_regs(): y = yaml.load(yaml_file) for (key, body) in y.items(): - # Some chip families have a separate bus for GPIO so its note attached to the AHB/APB - # bus but an IOPORT bus. Use the IOP as the clock for these chips + # Some chip families have a separate bus for GPIO so it's not attached to the AHB/APB + # bus but an IOPORT bus. Use the IOP as the clock for these chips. if m := re.match('^fieldset/((A[PH]B\d?)|IOP)[LH]?ENR\d?$', key): reg = removeprefix(key, 'fieldset/') clock = m.group(1)