summaryrefslogtreecommitdiff
path: root/numpy/_build_utils/src
diff options
context:
space:
mode:
authorDongjoon Hyun <dongjoon@apache.org>2016-01-27 15:42:42 -0800
committerDongjoon Hyun <dongjoon@apache.org>2016-01-27 21:14:48 -0800
commit73a2fd11a74eedb97201fc8d54ea193e810ea9d3 (patch)
treea1ebf45fcdc82a939bedc61bde2e6a2836fae453 /numpy/_build_utils/src
parent2b34f4bf652189e0415d5bf48ef7aa3294302871 (diff)
downloadnumpy-73a2fd11a74eedb97201fc8d54ea193e810ea9d3.tar.gz
MAINT: Fix some typos in a code string and comments
Diffstat (limited to 'numpy/_build_utils/src')
-rw-r--r--numpy/_build_utils/src/apple_sgemv_fix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/_build_utils/src/apple_sgemv_fix.c b/numpy/_build_utils/src/apple_sgemv_fix.c
index ffdfb81f7..4c9c82ece 100644
--- a/numpy/_build_utils/src/apple_sgemv_fix.c
+++ b/numpy/_build_utils/src/apple_sgemv_fix.c
@@ -155,7 +155,7 @@ void sgemv_( const char* trans, const int* m, const int* n,
*
* Because Fortran uses column major order and X.T and Y.T are row vectors,
* the leading dimensions of X.T and Y.T in SGEMM become equal to the
- * strides of the the column vectors X and Y in SGEMV. */
+ * strides of the column vectors X and Y in SGEMV. */
switch (*trans) {
case 'T':