File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -404,7 +404,7 @@ function definitions. In this section we consider only type parameter
404404definitions with lower bounds ` >: $L$ ` and upper bounds
405405` <: $U$ ` whereas a discussion of context bounds
406406` : $U$ ` and view bounds ` <% $U$ `
407- is deferred to [ here] ( 07-implicit-parameters-and-views .html#context-bounds-and-view-bounds ) .
407+ is deferred to [ here] ( 07-implicits .html#context-bounds-and-view-bounds ) .
408408
409409The most general form of a first-order type parameter is
410410` $@a_1 \ldots @a_n$ $\pm$ $t$ >: $L$ <: $U$ ` .
@@ -686,7 +686,7 @@ The by-name modifier is disallowed for parameters of classes that
686686carry a ` val ` or ` var ` prefix, including parameters of case
687687classes for which a ` val ` prefix is implicitly generated. The
688688by-name modifier is also disallowed for
689- [ implicit parameters] ( 07-implicit-parameters-and-views .html#implicit-parameters ) .
689+ [ implicit parameters] ( 07-implicits .html#implicit-parameters ) .
690690
691691###### Example
692692The declaration
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ Byte - Short
141141whereas ` Double ` is the highest-ranked. Ranking does _ not_
142142imply a [ conformance relationship] ( 03-types.html#conformance ) ; for
143143instance ` Int ` is not a subtype of ` Long ` . However, object
144- [ ` Predef ` ] ( #the-predef-object ) defines [ views] ( 07-implicit-parameters-and-views .html#views )
144+ [ ` Predef ` ] ( #the-predef-object ) defines [ views] ( 07-implicits .html#views )
145145from every numeric value type to all higher-ranked numeric value types.
146146Therefore, lower-ranked types are implicitly converted to higher-ranked types
147147when required by the [ context] ( 06-expressions.html#implicit-conversions ) .
@@ -467,7 +467,7 @@ val ys: Array[Object] = xs.asInstanceOf[Array[Object]] // OK
467467
468468The instantiation of an array with a polymorphic element type $T$ requires
469469information about type $T$ at runtime.
470- This information is synthesized by adding a [ context bound] ( 07-implicit-parameters-and-views .html#context-bounds-and-view-bounds )
470+ This information is synthesized by adding a [ context bound] ( 07-implicits .html#context-bounds-and-view-bounds )
471471of ` scala.reflect.ClassTag ` to type $T$.
472472An example is the
473473following implementation of method ` mkArray ` , which creates
You can’t perform that action at this time.
0 commit comments