summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/ext/noddy2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/ext/noddy2.c b/Doc/ext/noddy2.c
index 2683e8b..2caf985 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;