Skip to content

Commit 4f092fb

Browse files
committed
Make Slice.start and Slice.end public
1 parent 1fa8776 commit 4f092fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

std/src/std/bytes.inko

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ type pub inline Slice[T: Bytes] {
134134
let pub @source: ref T
135135

136136
# The start index (relative to the source) of the slice.
137-
let @start: Int
137+
let pub @start: Int
138138

139139
# The end index (relative to the source) of the slice.
140-
let @end: Int
140+
let pub @end: Int
141141

142142
# Returns a `Slice` over the given source.
143143
#

0 commit comments

Comments
 (0)