summaryrefslogtreecommitdiff
path: root/numpy/f2py/src/fortranobject.c
diff options
context:
space:
mode:
authorUnknown <kunda@scribus.net>2017-12-12 19:08:43 -0500
committerUnknown <kunda@scribus.net>2017-12-12 19:09:07 -0500
commitde100beb4b53833f817d4ba9c6d940e4cff96d43 (patch)
treeeba76bff8ae029b4fb805bd6cd4bff4337922f1d /numpy/f2py/src/fortranobject.c
parent356b481bcf8783a4ecca6aaa7d7712e347c16101 (diff)
downloadnumpy-de100beb4b53833f817d4ba9c6d940e4cff96d43.tar.gz
DOC: fix minor typos
Diffstat (limited to 'numpy/f2py/src/fortranobject.c')
-rw-r--r--numpy/f2py/src/fortranobject.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/f2py/src/fortranobject.c b/numpy/f2py/src/fortranobject.c
index 96b08ea18..a47733433 100644
--- a/numpy/f2py/src/fortranobject.c
+++ b/numpy/f2py/src/fortranobject.c
@@ -576,7 +576,7 @@ static void f2py_report_on_array_copy_fromany(void) {
*
* Description:
* ------------
- * Provides array_from_pyobj function that returns a contigious array
+ * Provides array_from_pyobj function that returns a contiguous array
* object with the given dimensions and required storage order, either
* in row-major (C) or column-major (Fortran) order. The function
* array_from_pyobj is very flexible about its Python object argument
@@ -745,8 +745,8 @@ PyArrayObject* array_from_pyobj(const int type_num,
return NULL;
}
/*
- printf("intent alignement=%d\n", F2PY_GET_ALIGNMENT(intent));
- printf("alignement check=%d\n", F2PY_CHECK_ALIGNMENT(arr, intent));
+ printf("intent alignment=%d\n", F2PY_GET_ALIGNMENT(intent));
+ printf("alignment check=%d\n", F2PY_CHECK_ALIGNMENT(arr, intent));
int i;
for (i=1;i<=16;i++)
printf("i=%d isaligned=%d\n", i, ARRAY_ISALIGNED(arr, i));