stdlib: fix typo in error message (#855)

Change-Id: I28f1881d207caa36c6101eef221ef4cdd229da57

Signed-off-by: Jason Lowe-Power <jason@lowepower.com>
This commit is contained in:
Jason Lowe-Power
2024-02-06 09:50:01 -08:00
committed by GitHub
parent f289f9e8b5
commit 4aecf9d35c

View File

@@ -198,7 +198,7 @@ class ChanneledMemory(AbstractMemorySystem):
raise Exception(
"Multi channel memory controller requires a single range "
"which matches the memory's size.\n"
f"The range size: {range[0].size()}\n"
f"The range size: {ranges[0].size()}\n"
f"This memory's size: {self._size}"
)
self._mem_range = ranges[0]