Fixed confusing typo

This commit is contained in:
Amru Eliwat 2016-10-30 22:40:42 -04:00
parent 0401e0d5f0
commit 850aae6ed5

View File

@ -594,7 +594,7 @@ for { n <- s; nSquared = n * n if nSquared < 10} yield nSquared
* best practices around them. We only include this section in the tutorial * best practices around them. We only include this section in the tutorial
* because they are so commonplace in Scala libraries that it is impossible to * because they are so commonplace in Scala libraries that it is impossible to
* do anything meaningful without using a library that has implicits. This is * do anything meaningful without using a library that has implicits. This is
* meant for you to understand and work with implicts, not declare your own. * meant for you to understand and work with implicits, not declare your own.
*/ */
// Any value (vals, functions, objects, etc) can be declared to be implicit by // Any value (vals, functions, objects, etc) can be declared to be implicit by