diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-07 14:09:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-07 14:09:41 (GMT) |
commit | 960e7b3ba13b26f45775551ab6f3c062b8666b74 (patch) | |
tree | b6f62c7f34c7abb52dc3704389e8b38087fb0545 /Objects/obmalloc.c | |
parent | 71d56a72313d66e73ca1b61130d2e617235c8a93 (diff) | |
download | cpython-960e7b3ba13b26f45775551ab6f3c062b8666b74.zip cpython-960e7b3ba13b26f45775551ab6f3c062b8666b74.tar.gz cpython-960e7b3ba13b26f45775551ab6f3c062b8666b74.tar.bz2 |
[3.9] Fix typos in the Objects directory (GH-28766) (GH-28795)
(cherry picked from commit 5f401f10400123afa9171548c432ea3fc37c0736)
Automerge-Triggered-By: GH:JulienPalard
Diffstat (limited to 'Objects/obmalloc.c')
-rw-r--r-- | Objects/obmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index eb34f10..9f8e0d1 100644 --- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c @@ -836,7 +836,7 @@ static int running_on_valgrind = -1; /* * Alignment of addresses returned to the user. 8-bytes alignment works - * on most current architectures (with 32-bit or 64-bit address busses). + * on most current architectures (with 32-bit or 64-bit address buses). * The alignment value is also used for grouping small requests in size * classes spaced ALIGNMENT bytes apart. * |