Skip to content

Commit 29f2b2b

Browse files
committed
use fully qualified references in doc comments
lightbend/genjavadoc#134
1 parent 4b88c2b commit 29f2b2b

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

src/main/scala/scala/compat/java8/StreamConverters.scala

+20-20
Original file line numberDiff line numberDiff line change
@@ -216,14 +216,14 @@ trait StreamExtensions {
216216
/**
217217
* Copy the elements of this stream into a Scala collection.
218218
*
219-
* Converting a parallel streams to an [[Accumulator]] using `stream.toScalaFactory(Accumulator)`
219+
* Converting a parallel streams to an [[scala.jdk.Accumulator]] using `stream.toScalaFactory(Accumulator)`
220220
* builds the result in parallel.
221221
*
222222
* A `toScalaFactory(Accumulator)` call automatically converts streams of boxed integers, longs or
223-
* doubles are converted to the primitive accumulators ([[IntAccumulator]], etc.).
223+
* doubles are converted to the primitive accumulators ([[scala.jdk.IntAccumulator]], etc.).
224224
*
225225
* When converting a parallel stream to a different Scala collection, the stream is first
226-
* converted into an [[Accumulator]], which supports parallel building. The accumulator is
226+
* converted into an [[scala.jdk.Accumulator]], which supports parallel building. The accumulator is
227227
* then converted to the target collection. Note that the stream is processed eagerly while
228228
* building the accumulator, even if the target collection is lazy.
229229
*
@@ -243,11 +243,11 @@ trait StreamExtensions {
243243
/**
244244
* Copy the elements of this stream into a Scala collection.
245245
*
246-
* For parallel streams, using [[accumulate]] is recommended as it builds the [[Accumulator]]
246+
* For parallel streams, using [[accumulate]] is recommended as it builds the [[scala.jdk.Accumulator]]
247247
* in parallel.
248248
*
249249
* When converting a parallel stream to a different Scala collection, the stream is first
250-
* converted into an [[Accumulator]], which supports parallel building. The accumulator is
250+
* converted into an [[scala.jdk.Accumulator]], which supports parallel building. The accumulator is
251251
* then converted to the target collection. Note that the stream is processed eagerly while
252252
* building the accumulator, even if the target collection is lazy.
253253
*
@@ -295,14 +295,14 @@ trait StreamExtensions {
295295
/**
296296
* Copy the elements of this stream into a Scala collection.
297297
*
298-
* Converting a parallel streams to an [[Accumulator]] using `stream.toScalaFactory(Accumulator)`
298+
* Converting a parallel streams to an [[scala.jdk.Accumulator]] using `stream.toScalaFactory(Accumulator)`
299299
* builds the result in parallel.
300300
*
301301
* A `toScalaFactory(Accumulator)` call automatically converts the `IntStream` to a primitive
302-
* [[IntAccumulator]].
302+
* [[scala.jdk.IntAccumulator]].
303303
*
304304
* When converting a parallel stream to a different Scala collection, the stream is first
305-
* converted into an [[Accumulator]], which supports parallel building. The accumulator is
305+
* converted into an [[scala.jdk.Accumulator]], which supports parallel building. The accumulator is
306306
* then converted to the target collection. Note that the stream is processed eagerly while
307307
* building the accumulator, even if the target collection is lazy.
308308
*
@@ -320,11 +320,11 @@ trait StreamExtensions {
320320
/**
321321
* Copy the elements of this stream into a Scala collection.
322322
*
323-
* For parallel streams, using [[accumulate]] is recommended as it builds the [[IntAccumulator]]
323+
* For parallel streams, using [[accumulate]] is recommended as it builds the [[scala.jdk.IntAccumulator]]
324324
* in parallel.
325325
*
326326
* When converting a parallel stream to a different Scala collection, the stream is first
327-
* converted into an [[Accumulator]], which supports parallel building. The accumulator is
327+
* converted into an [[scala.jdk.Accumulator]], which supports parallel building. The accumulator is
328328
* then converted to the target collection. Note that the stream is processed eagerly while
329329
* building the accumulator, even if the target collection is lazy.
330330
*
@@ -343,14 +343,14 @@ trait StreamExtensions {
343343
/**
344344
* Copy the elements of this stream into a Scala collection.
345345
*
346-
* Converting a parallel streams to an [[Accumulator]] using `stream.toScalaFactory(Accumulator)`
346+
* Converting a parallel streams to an [[scala.jdk.Accumulator]] using `stream.toScalaFactory(Accumulator)`
347347
* builds the result in parallel.
348348
*
349349
* A `toScalaFactory(Accumulator)` call automatically converts the `LongStream` to a primitive
350-
* [[LongAccumulator]].
350+
* [[scala.jdk.LongAccumulator]].
351351
*
352352
* When converting a parallel stream to a different Scala collection, the stream is first
353-
* converted into an [[Accumulator]], which supports parallel building. The accumulator is
353+
* converted into an [[scala.jdk.Accumulator]], which supports parallel building. The accumulator is
354354
* then converted to the target collection. Note that the stream is processed eagerly while
355355
* building the accumulator, even if the target collection is lazy.
356356
*
@@ -368,11 +368,11 @@ trait StreamExtensions {
368368
/**
369369
* Copy the elements of this stream into a Scala collection.
370370
*
371-
* For parallel streams, using [[accumulate]] is recommended as it builds the [[LongAccumulator]]
371+
* For parallel streams, using [[accumulate]] is recommended as it builds the [[scala.jdk.LongAccumulator]]
372372
* in parallel.
373373
*
374374
* When converting a parallel stream to a different Scala collection, the stream is first
375-
* converted into an [[Accumulator]], which supports parallel building. The accumulator is
375+
* converted into an [[scala.jdk.Accumulator]], which supports parallel building. The accumulator is
376376
* then converted to the target collection. Note that the stream is processed eagerly while
377377
* building the accumulator, even if the target collection is lazy.
378378
*
@@ -391,14 +391,14 @@ trait StreamExtensions {
391391
/**
392392
* Copy the elements of this stream into a Scala collection.
393393
*
394-
* Converting a parallel streams to an [[Accumulator]] using `stream.toScalaFactory(Accumulator)`
394+
* Converting a parallel streams to an [[scala.jdk.Accumulator]] using `stream.toScalaFactory(Accumulator)`
395395
* builds the result in parallel.
396396
*
397397
* A `toScalaFactory(Accumulator)` call automatically converts the `DoubleStream` to a primitive
398-
* [[DoubleAccumulator]].
398+
* [[scala.jdk.DoubleAccumulator]].
399399
*
400400
* When converting a parallel stream to a different Scala collection, the stream is first
401-
* converted into an [[Accumulator]], which supports parallel building. The accumulator is
401+
* converted into an [[scala.jdk.Accumulator]], which supports parallel building. The accumulator is
402402
* then converted to the target collection. Note that the stream is processed eagerly while
403403
* building the accumulator, even if the target collection is lazy.
404404
*
@@ -416,11 +416,11 @@ trait StreamExtensions {
416416
/**
417417
* Copy the elements of this stream into a Scala collection.
418418
*
419-
* For parallel streams, using [[accumulate]] is recommended as it builds the [[DoubleAccumulator]]
419+
* For parallel streams, using [[accumulate]] is recommended as it builds the [[scala.jdk.DoubleAccumulator]]
420420
* in parallel.
421421
*
422422
* When converting a parallel stream to a different Scala collection, the stream is first
423-
* converted into an [[Accumulator]], which supports parallel building. The accumulator is
423+
* converted into an [[scala.jdk.Accumulator]], which supports parallel building. The accumulator is
424424
* then converted to the target collection. Note that the stream is processed eagerly while
425425
* building the accumulator, even if the target collection is lazy.
426426
*

0 commit comments

Comments
 (0)