Skip to content

Commit dcdef50

Browse files
committed
make base and stride internal
1 parent 4a194ca commit dcdef50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/Algorithms/Stride.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ extension Collection {
3434

3535
public struct Stride<Base: Collection> {
3636

37-
public let base: Base
38-
public let stride: Int
37+
let base: Base
38+
let stride: Int
3939

4040
init(base: Base, stride: Int) {
4141
precondition(stride > 0, "striding must be greater than zero")

0 commit comments

Comments
 (0)