From a8fdde7cdb966d1971667f08f8e28b5b9ca18955 Mon Sep 17 00:00:00 2001 From: Michael McCune Date: Wed, 7 Dec 2016 20:48:26 -0500 Subject: [PATCH] add a missing word to tour-of-scala.md Looks like a "the" is missing from the first paragraph of the "Scala is extensible" section of the tour-of-scala.md doc. --- tutorials/tour/tour-of-scala.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/tour/tour-of-scala.md b/tutorials/tour/tour-of-scala.md index 01d94c5313..975fd0d766 100644 --- a/tutorials/tour/tour-of-scala.md +++ b/tutorials/tour/tour-of-scala.md @@ -36,7 +36,7 @@ A [local type inference mechanism](local-type-inference.html) takes care that th ## Scala is extensible ## -In practice, the development of domain-specific applications often requires domain-specific language extensions. Scala provides a unique combination of language mechanisms that make it easy to smoothly add new language constructs in form of libraries: +In practice, the development of domain-specific applications often requires domain-specific language extensions. Scala provides a unique combination of language mechanisms that make it easy to smoothly add new language constructs in the form of libraries: * any method may be used as an [infix or postfix operator](operators.html) * [closures are constructed automatically depending on the expected type](automatic-closures.html) (target typing).