[pypy-commit] pypy gc-incminimark-pinning-improve: fix typo

groggi noreply at buildbot.pypy.org
Mon Mar 23 14:29:19 CET 2015


Author: Gregor Wegberg <code at gregorwegberg.com>
Branch: gc-incminimark-pinning-improve
Changeset: r76524:01630ad8c431
Date: 2015-03-22 18:36 +0100
http://bitbucket.org/pypy/pypy/changeset/01630ad8c431/

Log:	fix typo

diff --git a/rpython/memory/gc/incminimark.py b/rpython/memory/gc/incminimark.py
--- a/rpython/memory/gc/incminimark.py
+++ b/rpython/memory/gc/incminimark.py
@@ -475,7 +475,7 @@
         # the start of the nursery: we actually allocate a bit more for
         # the nursery than really needed, to simplify pointer arithmetic
         # in malloc_fixedsize().  The few extra pages are never used
-        # anyway so it doesn't even counct.
+        # anyway so it doesn't even count.
         nursery = llarena.arena_malloc(self._nursery_memory_size(), 0)
         if not nursery:
             out_of_memory("cannot allocate nursery")


More information about the pypy-commit mailing list