fix typos
authorStefan Behnel <stefan_ml@behnel.de>
Sat, 12 Oct 2013 08:19:06 +0000 (10:19 +0200)
committerStefan Behnel <stefan_ml@behnel.de>
Sat, 12 Oct 2013 08:19:06 +0000 (10:19 +0200)
docs/src/tutorial/memory_allocation.rst

index c995d0e..b15ec0e 100644 (file)
@@ -67,7 +67,7 @@ when they are no longer used (and *must* always use the matching
 type of free function).  Otherwise, they won't be reclaimed until the
 python process exits.  This is called a memory leak.
 
-If a chuck of memory needs a larger lifetime then can be managed by a
+If a chunk of memory needs a larger lifetime than can be managed by a
 ``try..finally`` block, another helpful idiom is to tie its lifetime
 to a Python object to leverage the Python runtime's memory management,
 e.g.::