diff options
author | Geoff Liu <cangming.liu@gmail.com> | 2014-11-27 00:40:32 -0700 |
---|---|---|
committer | Geoff Liu <cangming.liu@gmail.com> | 2014-11-27 00:40:36 -0700 |
commit | 448aee0ed7b68d1ad029d78f3ac157eeba8c3555 (patch) | |
tree | 8cc83aac384473c71a8fd17152881c2ab0d81640 /scala.html.markdown | |
parent | fa2a8209062a3005744a17f3d0912981b43f8942 (diff) |
Fix a typo
Diffstat (limited to 'scala.html.markdown')
-rw-r--r-- | scala.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scala.html.markdown b/scala.html.markdown index f481f04f..5a478f2a 100644 --- a/scala.html.markdown +++ b/scala.html.markdown @@ -527,7 +527,7 @@ implicit def myImplicitFunction(breed: String) = new Dog("Golden " + breed) myImplicitInt + 2 // => 102 myImplicitFunction("Pitbull").breed // => "Golden Pitbull" -// The difference is that these values are now elligible to be used when another +// The difference is that these values are now eligible to be used when another // piece of code "needs" an implicit value. One such situation is implicit // function arguments: def sendGreetings(toWhom: String)(implicit howMany: Int) = |