From 29a15dbca5b9b773c081017ee3d8311f51990a22 Mon Sep 17 00:00:00 2001 From: corem Date: Tue, 1 Oct 2024 14:20:15 -0400 Subject: [PATCH] Corrects a minor typo in the Chunk class description --- core/src/main/scala/ox/Chunk.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/ox/Chunk.scala b/core/src/main/scala/ox/Chunk.scala index 473af001..28865e15 100644 --- a/core/src/main/scala/ox/Chunk.scala +++ b/core/src/main/scala/ox/Chunk.scala @@ -5,7 +5,7 @@ import java.nio.charset.StandardCharsets import scala.reflect.ClassTag import scala.reflect.classTag -/** An immutable finite indexed sequence of elements, backed by Array. Currently represents only a think wrapper, delegating all operations +/** An immutable finite indexed sequence of elements, backed by Array. Currently represents only a thin wrapper, delegating all operations * from `IndexedSeq` directly to underlying `Array` equivalents. Such operations can be expensive when you want to do concatenation, * splitAt, drop, etc. - transformations that are often useful when doing Source processing. `Chunk` should therefore evolve towards a * performance-optimized, underneath leveraging Arrays wrapped with lazy data structures to avoid unnecessary data copying.