From 5fc6e5494c49587a66558704c3d38aabd95e4f17 Mon Sep 17 00:00:00 2001 From: Valeriy Van Date: Wed, 1 Oct 2025 18:07:58 +0200 Subject: [PATCH] Fix typo in AtomicRepresentable.swift --- stdlib/public/Synchronization/Atomics/AtomicRepresentable.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/public/Synchronization/Atomics/AtomicRepresentable.swift b/stdlib/public/Synchronization/Atomics/AtomicRepresentable.swift index 7cf1e5790ed77..206d3508846bd 100644 --- a/stdlib/public/Synchronization/Atomics/AtomicRepresentable.swift +++ b/stdlib/public/Synchronization/Atomics/AtomicRepresentable.swift @@ -47,7 +47,7 @@ /// conformance synthesis for enums by declaring our "raw value" to be a /// `UInt8`. By adding the `AtomicRepresentable` conformance, we automatically /// figure out how to do the conformance from the `RawRepresentable` -/// implementation and do all of th necessary work for you. However, it is still +/// implementation and do all of the necessary work for you. However, it is still /// possible to customize this behavior using the manual method explained below. /// /// Defining your own `AtomicRepresentable` conformance is pretty simple. All