diff options
author | John Kirkham <kirkhamj@janelia.hhmi.org> | 2016-01-10 12:41:59 -0500 |
---|---|---|
committer | John Kirkham <kirkhamj@janelia.hhmi.org> | 2016-01-10 12:41:59 -0500 |
commit | 5fd70ba6bb82d0505ac677118e69ce93a623e2cb (patch) | |
tree | b9afef09fbec0cdff8447062f4b6bd1803258476 | |
parent | 599dee9d8c29bdf427d6d381d77583bb65177a13 (diff) | |
download | numpy-5fd70ba6bb82d0505ac677118e69ce93a623e2cb.tar.gz |
DOC: Fix typos.
-rw-r--r-- | doc/newdtype_example/floatint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/newdtype_example/floatint.c b/doc/newdtype_example/floatint.c index fa97a882d..0cc198388 100644 --- a/doc/newdtype_example/floatint.c +++ b/doc/newdtype_example/floatint.c @@ -1,10 +1,10 @@ #include "Python.h" -#include "structmember.h" /* for offsetof macro if needed */ +#include "structmember.h" /* for offset of macro if needed */ #include "numpy/arrayobject.h" -/* Use a Python float as the cannonical type being added +/* Use a Python float as the canonical type being added */ typedef struct _floatint { |