Skip to content

Commit ac73d7e

Browse files
committed
stdlib: use a better type parameter name in _Box
1 parent dfef8c4 commit ac73d7e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stdlib/public/core/Process.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212

1313
import SwiftShims
1414

15-
internal class _Box<T> {
16-
internal var _value: T
17-
internal init(_ value: T) { self._value = value }
15+
internal class _Box<Wrapped> {
16+
internal var _value: Wrapped
17+
internal init(_ value: Wrapped) { self._value = value }
1818
}
1919

2020
/// Command-line arguments for the current process.

0 commit comments

Comments
 (0)