summaryrefslogtreecommitdiffhomepage
path: root/scala.html.markdown
diff options
context:
space:
mode:
authorven <vendethiel@hotmail.fr>2018-02-28 11:44:53 +0100
committerGitHub <noreply@github.com>2018-02-28 11:44:53 +0100
commit03b9fce5fa97b11931c3358964413591c0633f45 (patch)
tree96bcb41e4a7e9f4893c988db879d0fa23bf0703d /scala.html.markdown
parent52a4a4ac95f3df89b574458ec8e951458b2f8f85 (diff)
follow-up for #2768
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