Skip to content

Commit 84f6621

Browse files
committed
Save progress: 2026-03-25
1 parent 1402ab6 commit 84f6621

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

Package.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ for target in package.targets where ![.system, .binary, .plugin, .macro].contain
6262
.enableUpcomingFeature("NonisolatedNonsendingByDefault"),
6363
.enableExperimentalFeature("Lifetimes"),
6464
.enableExperimentalFeature("SuppressedAssociatedTypes"),
65-
.enableExperimentalFeature("SuppressedAssociatedTypesWithDefaults"),
6665
]
6766

6867
let package: [SwiftSetting] = []

Sources/ASCII/UInt8+INCITS_4_1986.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ extension UInt8 {
2828
///
2929
/// ## Performance
3030
///
31-
/// This initializer is marked `@inline(__always)` for optimal performance, delegating to
31+
/// This initializer is marked `@inline(always)` for optimal performance, delegating to
3232
/// the Swift standard library's `Character.asciiValue` property.
3333
///
3434
/// ## Usage
@@ -52,7 +52,7 @@ extension UInt8 {
5252
///
5353
/// - ``INCITS_4_1986``
5454
/// - ``ASCII``
55-
@inline(__always)
55+
@inline(always)
5656
public init?(ascii character: Character) {
5757
guard let value = character.asciiValue else { return nil }
5858
self = value
@@ -441,7 +441,7 @@ extension Binary.ASCII {
441441
/// ## See Also
442442
///
443443
/// - ``UInt8/init(ascii:)``
444-
@inline(__always)
444+
@inline(always)
445445
public static func unchecked(_ character: Character) -> UInt8 {
446446
character.utf8.first!
447447
}

0 commit comments

Comments
 (0)