From 36d2f33ef107b46aee8a25d736521e203fd586c0 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sat, 15 Jun 2013 12:28:29 -0400 Subject: [PATCH] fix spelling --- pep-0445.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0445.txt b/pep-0445.txt index ebb1914dd..1e158c37e 100644 --- a/pep-0445.txt +++ b/pep-0445.txt @@ -135,7 +135,7 @@ Simplify the signature of allocator functions, remove the context argument: * ``void* realloc(void *ptr, size_t new_size)`` * ``void free(void *ptr)`` -The context is a convinient way to reuse the same allocator for different APIs +The context is a convenient way to reuse the same allocator for different APIs (ex: PyMem and PyObject).