Skip to content

Commit 371a28b

Browse files
committed
Merge pull request scala#4203 from xuwei-k/ByteCodecs-scaladoc
fix ByteCodecs scaladoc
2 parents d9f623d + 799f3a5 commit 371a28b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reflect/scala/reflect/internal/pickling/ByteCodecs.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,10 @@ object ByteCodecs {
196196
*
197197
* Sometimes returns (length+1) of the decoded array. Example:
198198
*
199-
* scala> val enc = scala.reflect.generic.ByteCodecs.encode(Array(1,2,3))
199+
* scala> val enc = scala.reflect.internal.pickling.ByteCodecs.encode(Array(1,2,3))
200200
* enc: Array[Byte] = Array(2, 5, 13, 1)
201201
*
202-
* scala> scala.reflect.generic.ByteCodecs.decode(enc)
202+
* scala> scala.reflect.internal.pickling.ByteCodecs.decode(enc)
203203
* res43: Int = 4
204204
*
205205
* scala> enc

0 commit comments

Comments
 (0)