summaryrefslogtreecommitdiffhomepage
path: root/scala.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'scala.html.markdown')
-rw-r--r--scala.html.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/scala.html.markdown b/scala.html.markdown
index 78893b30..016e2b4f 100644
--- a/scala.html.markdown
+++ b/scala.html.markdown
@@ -276,7 +276,8 @@ r foreach println
// NB: Scala is quite lenient when it comes to dots and brackets - study the
// rules separately. This helps write DSLs and APIs that read like English
-// Why doesn't `println` need any parameters here? Stay tuned for Functional Programming below!
+// Why doesn't `println` need any parameters here?
+// Stay tuned for first-class functions in the Functional Programming section below!
(5 to 1 by -1) foreach (println)
// A while loop