From 6a74ef550c1a6bdccdad15eec2e5e865f8f9603f Mon Sep 17 00:00:00 2001 From: Philippus Baalman Date: Tue, 6 Jun 2017 21:50:42 +0200 Subject: [PATCH] Refer to 'by-name-parameters' page instead of non-existing 'automatic-closures' page --- tutorials/tour/_posts/2017-02-13-annotations.md | 2 +- tutorials/tour/_posts/2017-02-13-operators.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/tour/_posts/2017-02-13-annotations.md b/tutorials/tour/_posts/2017-02-13-annotations.md index 195c2f9b68..20cacd5909 100644 --- a/tutorials/tour/_posts/2017-02-13-annotations.md +++ b/tutorials/tour/_posts/2017-02-13-annotations.md @@ -8,7 +8,7 @@ tutorial: scala-tour categories: tour num: 32 next-page: default-parameter-values -previous-page: automatic-closures +previous-page: by-name-parameters --- Annotations associate meta-information with definitions. For example, the annotation `@deprecated` before a method causes the compiler to print a warning if the method is used. diff --git a/tutorials/tour/_posts/2017-02-13-operators.md b/tutorials/tour/_posts/2017-02-13-operators.md index 2a0e473137..b1b401267a 100644 --- a/tutorials/tour/_posts/2017-02-13-operators.md +++ b/tutorials/tour/_posts/2017-02-13-operators.md @@ -7,7 +7,7 @@ discourse: true tutorial: scala-tour categories: tour num: 30 -next-page: automatic-closures +next-page: by-name-parameters previous-page: local-type-inference prerequisite-knowledge: case-classes ---