From 7694072f5c01d29a86c925f738d7007adbd17faf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20L=C3=B3pez?= Date: Fri, 14 Oct 2022 11:22:06 +0200 Subject: [PATCH] Fix typo --- _overviews/tutorials/scala-for-java-programmers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/tutorials/scala-for-java-programmers.md b/_overviews/tutorials/scala-for-java-programmers.md index 7777acfc1a..1831083332 100644 --- a/_overviews/tutorials/scala-for-java-programmers.md +++ b/_overviews/tutorials/scala-for-java-programmers.md @@ -741,7 +741,7 @@ a brief specification: the value of a `Sum` is the addition of the evaluations of its two inner expressions; the value of a `Var` is obtained by lookup of its inner name in the environment; and the value of a `Const` is its inner value itself. This specification translates exactly into -Scala as followa, using a pattern match on a tree value `t`: +Scala as follows, using a pattern match on a tree value `t`: {% tabs patt-match-demo class=tabs-scala-version %}