addressing review comments #24933

This commit is contained in:
David Mischke 2018-07-23 13:07:32 +02:00
parent 9885a56f17
commit f94733acc6
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ Emit each integer in a range, with an option to take bigger steps than 1.
## Description
Emit each integer in a range, with an option to take bigger steps than 1. In Scala, you can use the apply method to generate a sequence of integers.
Emit each integer in a range, with an option to take bigger steps than 1. @scala[In Scala, you can use the `apply` method to generate a sequence of integers.]
@@@div { .callout }

View file

@ -41,5 +41,5 @@ public class Source {
//#run-range
source.runForeach(i -> System.out.println(i), materializer);
//#run-range
}
}