[Python-checkins] Fix typo in internal/pycore_atomic.h (GH-95939)

miss-islington webhook-mailer at python.org
Sat Aug 13 00:05:42 EDT 2022


https://github.com/python/cpython/commit/83bde57f6e549b017116d2c89ef427ea0fb8dad4
commit: 83bde57f6e549b017116d2c89ef427ea0fb8dad4
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-08-12T21:05:37-07:00
summary:

Fix typo in internal/pycore_atomic.h (GH-95939)

(cherry picked from commit 8281cbddc6f0fbc94f0c21cacfac79a2d4057a4b)

Co-authored-by: fluesvamp <105884371+fluesvamp at users.noreply.github.com>

files:
M Include/internal/pycore_atomic.h

diff --git a/Include/internal/pycore_atomic.h b/Include/internal/pycore_atomic.h
index 3d42e54464c..425d69f868b 100644
--- a/Include/internal/pycore_atomic.h
+++ b/Include/internal/pycore_atomic.h
@@ -236,7 +236,7 @@ _Py_ANNOTATE_MEMORY_ORDER(const volatile void *address, _Py_memory_order order)
     in hardware they will fall back to a full memory barrier as well.
 
     This might affect performance but likely only in some very specific and
-    hard to meassure scenario.
+    hard to measure scenario.
 */
 #if defined(_M_IX86) || defined(_M_X64)
 typedef enum _Py_memory_order {



More information about the Python-checkins mailing list