]> granicus.if.org Git - python/commitdiff
Minor typo fix.
authorGeorg Brandl <georg@python.org>
Sun, 28 Oct 2012 07:48:28 +0000 (08:48 +0100)
committerGeorg Brandl <georg@python.org>
Sun, 28 Oct 2012 07:48:28 +0000 (08:48 +0100)
Include/pyport.h
Misc/NEWS

index baa04fee17b69dd20f55a3ed49baf4c2b21e1468..944b83adff658d93b08a199b8383ee9093e78fab 100644 (file)
@@ -866,7 +866,7 @@ extern pid_t forkpty(int *, char *, struct termios *, struct winsize *);
 #endif
 
 /*
- * Convenient macros to deal with endianess of the platform. WORDS_BIGENDIAN is
+ * Convenient macros to deal with endianness of the platform. WORDS_BIGENDIAN is
  * detected by configure and defined in pyconfig.h. The code in pyconfig.h
  * also also takes care of Apple's universal builds.
  */
index dde91212fca7c3bfa1d8e613841c7d6d387f46f6..ad2530b634f79bf403ee60f00da709cb4d1e470f 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -20,7 +20,7 @@ Core and Builtins
   user that created them, even when the source file is read-only.
 
 - Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unified
-  endianess detection and handling.
+  endianness detection and handling.
 
 - Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer
   objects.