Skip to content

Commit ae96916

Browse files
committed
fix: restore fully qualified package name in ActorSource scaladoc references
Motivation: PR #3285 review comment from pjfanning: "should we keep the package name?" The original [[pekko.stream.javadsl.Source.queue]] and [[pekko.stream.scaladsl.Source.queue]] links were replaced with just `Source.queue`, dropping the package name and making the reference ambiguous. Modification: Restore the fully qualified package names in the scaladoc "See also" references for both javadsl and scaladsl ActorSource.scala files. Result: Scaladoc references now include the full package path, making it clear which Source.queue class is being referenced. Tests: Not run - docs only References: Refs #3285
1 parent c18b1d3 commit ae96916

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

stream-typed/src/main/scala/org/apache/pekko/stream/typed/javadsl/ActorSource.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ object ActorSource {
5151
* The actor will be stopped when the stream is completed, failed or canceled from downstream,
5252
* i.e. you can watch it to get notified when that happens.
5353
*
54-
* See also `Source.queue`.
54+
* See also `org.apache.pekko.stream.javadsl.Source.queue`.
5555
*
5656
* @param bufferSize The size of the buffer in element count
5757
* @param overflowStrategy Strategy that is used when incoming elements cannot fit inside the buffer

stream-typed/src/main/scala/org/apache/pekko/stream/typed/scaladsl/ActorSource.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ object ActorSource {
5151
* The actor will be stopped when the stream is completed, failed or canceled from downstream,
5252
* i.e. you can watch it to get notified when that happens.
5353
*
54-
* See also `Source.queue`.
54+
* See also `org.apache.pekko.stream.scaladsl.Source.queue`.
5555
*
5656
* @param bufferSize The size of the buffer in element count
5757
* @param overflowStrategy Strategy that is used when incoming elements cannot fit inside the buffer

0 commit comments

Comments
 (0)