From 35ad0ccbe0b4dcb8b038e8d90ad43acb70b577fc Mon Sep 17 00:00:00 2001 From: Philippus Baalman Date: Sun, 4 Jun 2017 12:02:53 +0200 Subject: [PATCH] Skip non-existing 'anonymous-function-syntax' page, fixes https://github.com/scala/scala.github.com/issues/771 --- tutorials/tour/_posts/2017-02-13-higher-order-functions.md | 2 +- tutorials/tour/_posts/2017-02-13-mixin-class-composition.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/tour/_posts/2017-02-13-higher-order-functions.md b/tutorials/tour/_posts/2017-02-13-higher-order-functions.md index 74377d07a7..480a23fda8 100644 --- a/tutorials/tour/_posts/2017-02-13-higher-order-functions.md +++ b/tutorials/tour/_posts/2017-02-13-higher-order-functions.md @@ -8,7 +8,7 @@ tutorial: scala-tour categories: tour num: 8 next-page: nested-functions -previous-page: anonymous-function-syntax +previous-page: mixin-class-composition --- Scala allows the definition of higher-order functions. These are functions that _take other functions as parameters_, or whose _result is a function_. Here is a function `apply` which takes another function `f` and a value `v` and applies function `f` to `v`: diff --git a/tutorials/tour/_posts/2017-02-13-mixin-class-composition.md b/tutorials/tour/_posts/2017-02-13-mixin-class-composition.md index 6fd5dd2cbc..0c536be92d 100644 --- a/tutorials/tour/_posts/2017-02-13-mixin-class-composition.md +++ b/tutorials/tour/_posts/2017-02-13-mixin-class-composition.md @@ -7,7 +7,7 @@ disqus: true tutorial: scala-tour categories: tour num: 6 -next-page: anonymous-function-syntax +next-page: higher-order-functions previous-page: traits ---