diff options
author | Greg Ward <gward@python.net> | 2003-01-03 21:22:08 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2003-01-03 21:22:08 (GMT) |
commit | 6f2bb2362a5f5b7065495456c3caf025c65561d5 (patch) | |
tree | 92aa7cbd307f641ea5e5bd2bbf03e45a11ae8c66 /Objects | |
parent | fdf65d91060b727fa258205ac45b9dcd827e83f4 (diff) | |
download | cpython-6f2bb2362a5f5b7065495456c3caf025c65561d5.zip cpython-6f2bb2362a5f5b7065495456c3caf025c65561d5.tar.gz cpython-6f2bb2362a5f5b7065495456c3caf025c65561d5.tar.bz2 |
Grammatical fix in comment.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/xxobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/xxobject.c b/Objects/xxobject.c index d847c52..6bf4994 100644 --- a/Objects/xxobject.c +++ b/Objects/xxobject.c @@ -2,7 +2,7 @@ /* Use this file as a template to start implementing a new object type. If your objects will be called foobar, start by copying this file to foobarobject.c, changing all occurrences of xx to foobar and all - occurrences of Xx by Foobar. You will probably want to delete all + occurrences of Xx to Foobar. You will probably want to delete all references to 'x_attr' and add your own types of attributes instead. Maybe you want to name your local variables other than 'xp'. If your object type is needed in other files, you'll have to |