From 8c3a01cdc83cc53c95ad728b04df2cbb5d45f7cc Mon Sep 17 00:00:00 2001 From: Daniel Tinsley Date: Tue, 14 Jan 2020 00:43:56 -0600 Subject: [PATCH] Fix typo by changing "it's" to "its" --- _overviews/scala-book/scala-features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/scala-book/scala-features.md b/_overviews/scala-book/scala-features.md index 1d19fdfbf3..11291253e2 100644 --- a/_overviews/scala-book/scala-features.md +++ b/_overviews/scala-book/scala-features.md @@ -20,7 +20,7 @@ Here are a few more nuggets about Scala: - It’s a high-level language. - It’s statically typed. - It has a sophisticated type inference system. -- It’s syntax is concise but still readable — we call it *expressive*. +- Its syntax is concise but still readable — we call it *expressive*. - It’s a pure object-oriented programming (OOP) language. Every variable is an object, and every “operator” is a method. - It’s also a functional programming (FP) language, so functions are also variables, and you can pass them into other functions. You can write your code using OOP, FP, or combine them in a hybrid style. - Scala source code compiles to “.class” files that run on the JVM.