Skip to content

Commit 942728a

Browse files
committed
Small fixes
1 parent 625ab2f commit 942728a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/longsequences/constructors.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function LongSequence{A}(it) where {A <: Alphabet}
2727
data = Vector{UInt64}(undef, seq_data_len(A, len))
2828
bits = zero(UInt)
2929
bitind = bitindex(BitsPerSymbol(A()), encoded_data_eltype(LongSequence{A}), 1)
30-
@inbounds for (i, x) in enumerate(it)
30+
@inbounds for x in it
3131
xT = convert(eltype(A), x)
3232
enc = encode(A(), xT)
3333
bits |= enc << offset(bitind)

0 commit comments

Comments
 (0)