Skip to content

Commit 22ea345

Browse files
committed
Format bulleted lists the same throughout.
(cherry picked from commit c4b6f4b)
1 parent cf6cfa7 commit 22ea345

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

stdlib/public/core/Sendable.swift

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@
1919
/// All of the following can be marked as sendable:
2020
///
2121
/// - Value types
22+
///
2223
/// - Reference types with no mutable storage
24+
///
2325
/// - Reference types that internally manage access to their state
26+
///
2427
/// - Functions and closures (via `@Sendable`)
2528
///
2629
/// Although this protocol doesn't have any required methods or properties,
@@ -50,10 +53,10 @@
5053
/// In some cases, structures and enumerations
5154
/// that satisfy the requirements implicitly conform to `Sendable`:
5255
///
53-
/// - Frozen structures and enumerations
56+
/// - Frozen structures and enumerations
5457
///
55-
/// - Structures and enumerations
56-
/// that aren't public and aren't marked `@usableFromInline`.
58+
/// - Structures and enumerations
59+
/// that aren't public and aren't marked `@usableFromInline`.
5760
///
5861
/// Otherwise, you need to declare conformance to `Sendable` explicitly.
5962
///

0 commit comments

Comments
 (0)