From 7e913891e9d7d2f6be6adbda2a2f8153776c5a8f Mon Sep 17 00:00:00 2001 From: EarthCitizen Date: Fri, 24 May 2019 19:34:15 -0700 Subject: [PATCH] Fix grammar error --- src/main/scala/stdlib/EmptyValues.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/stdlib/EmptyValues.scala b/src/main/scala/stdlib/EmptyValues.scala index 253d2701..67c0ebd4 100644 --- a/src/main/scala/stdlib/EmptyValues.scala +++ b/src/main/scala/stdlib/EmptyValues.scala @@ -18,7 +18,7 @@ object EmptyValues extends FlatSpec with Matchers with org.scalaexercises.defini * * ==Null== * - * [[http://www.scala-lang.org/api/current/index.html#scala.Null Null]] is a trait whose only instance is `null`. It is a subtype of all reference types, but not of value types. It purpose in existing is to make it so reference types can be assigned `null` and value types can't. + * [[http://www.scala-lang.org/api/current/index.html#scala.Null Null]] is a trait whose only instance is `null`. It is a subtype of all reference types, but not of value types. Its purpose in existing is to make it so reference types can be assigned `null` and value types can't. * * ==Nothing== *