summaryrefslogtreecommitdiff
path: root/shared-bindings/memorymonitor/AllocationSize.c
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2020-07-21 16:08:41 -0700
committerScott Shawcroft <scott@tannewt.org>2020-07-21 16:08:41 -0700
commitee019a96bae776661a7401e0f34cf633c908a42b (patch)
tree06caed6eb5b8c6308cad2807c237b45f9677c0c8 /shared-bindings/memorymonitor/AllocationSize.c
parent693b3e7704e1c7a9bea25d3b43c3771123e8c214 (diff)
Updates based on review
Diffstat (limited to 'shared-bindings/memorymonitor/AllocationSize.c')
-rw-r--r--shared-bindings/memorymonitor/AllocationSize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/memorymonitor/AllocationSize.c b/shared-bindings/memorymonitor/AllocationSize.c
index 3e0e31336..501674441 100644
--- a/shared-bindings/memorymonitor/AllocationSize.c
+++ b/shared-bindings/memorymonitor/AllocationSize.c
@@ -38,7 +38,7 @@
//| def __init__(self):
//| """Tracks the number of allocations in power of two buckets.
//|
-//| It will have 16 16bit buckets to track allocation counts. It is total allocations
+//| It will have 16 16-bit buckets to track allocation counts. It is total allocations
//| meaning frees are ignored. Reallocated memory is counted twice, at allocation and when
//| reallocated with the larger size.
//|