From c48a740887c80a4e6686486d62171f9efe64921c Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 17 Jul 2005 21:18:25 +0000 Subject: [PATCH] bug [ 1021621 ] use first_name, not first, in code samples --- Doc/ext/noddy2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/ext/noddy2.c b/Doc/ext/noddy2.c index 2683e8b4687..2caf9855c64 100644 --- a/Doc/ext/noddy2.c +++ b/Doc/ext/noddy2.c @@ -3,8 +3,8 @@ typedef struct { PyObject_HEAD - PyObject *first; - PyObject *last; + PyObject *first; /* first name */ + PyObject *last; /* last name */ int number; } Noddy;