summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Wignall <brianwignall@gmail.com>2019-12-05 08:36:19 -0500
committerBrian Wignall <brianwignall@gmail.com>2019-12-05 08:36:19 -0500
commitc717ef3aa47be7aab5997f7f71bdd6cf7fe63f86 (patch)
tree749b0ea1fbd06536a95135c5858df54d590efc77
parent24180c844f02d8a63f75f954eed4c9e89c5d3d17 (diff)
downloadcython-c717ef3aa47be7aab5997f7f71bdd6cf7fe63f86.tar.gz
Fix typos
-rw-r--r--CHANGES.rst2
-rw-r--r--Cython/Compiler/PyrexTypes.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 84edbd3de..f23899a32 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1261,7 +1261,7 @@ Features added
* "cdef extern" include files are now also searched relative to the current file.
Patch by Jeroen Demeyer (Github issue #1654).
-* Optional optimization for re-aquiring the GIL, controlled by the
+* Optional optimization for re-acquiring the GIL, controlled by the
`fast_gil` directive.
Bugs fixed
diff --git a/Cython/Compiler/PyrexTypes.py b/Cython/Compiler/PyrexTypes.py
index f54e7a6eb..faeaa9a8d 100644
--- a/Cython/Compiler/PyrexTypes.py
+++ b/Cython/Compiler/PyrexTypes.py
@@ -594,7 +594,7 @@ class MemoryViewSliceType(PyrexType):
'ptr' -- Pointer stored in this dimension.
'full' -- Check along this dimension, don't assume either.
- the packing specifiers specify how the array elements are layed-out
+ the packing specifiers specify how the array elements are laid-out
in memory.
'contig' -- The data is contiguous in memory along this dimension.