From 1570387f9e2c8d25e885cae9aa979c5320582b13 Mon Sep 17 00:00:00 2001 From: Haris Osmanagic Date: Tue, 11 Feb 2014 20:36:27 +0100 Subject: [PATCH] Corrected typo. --- web/advanced-types.textile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/advanced-types.textile b/web/advanced-types.textile index 1c8d9b4f..c99c53f4 100644 --- a/web/advanced-types.textile +++ b/web/advanced-types.textile @@ -36,7 +36,7 @@ scala> math.max("123", 111) res1: Int = 123 -view bounds, like type bounds demand such a function exists for the given type. You specify a type bound with <% e.g., +View bounds, like type bounds demand such a function exists for the given type. You specify a view bound with <% e.g.,
 scala> class Container[A <% Int] { def addIt(x: A) = 123 + x }