File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -143,13 +143,13 @@ object HListExercises extends FlatSpec with Matchers with org.scalaexercises.def
143
143
apap.toList should be(res0)
144
144
145
145
/** And it has a `Typeable` type class instance (see below), allowing, eg. vanilla `List[Any]`'s or `HList`'s with
146
- * elements of type `Any` to be safely cast to precisely typed `HList`'s.
147
- * These last three features make this `HList` dramatically more practically useful than `HList`'s are typically thought to be:
148
- * normally the full type information required to work with them is too fragile to cross subtyping or I/O boundaries.
149
- * This implementation supports the discarding of precise information where necessary.
150
- * (eg. to serialize a precisely typed record after construction), and its later reconstruction.
151
- * (eg. a weakly typed deserialized record with a known schema can have it's precise typing reestabilished ).
152
- */
146
+ * elements of type `Any` to be safely cast to precisely typed `HList`'s.
147
+ * These last three features make this `HList` dramatically more practically useful than `HList`'s are typically thought to be:
148
+ * normally the full type information required to work with them is too fragile to cross subtyping or I/O boundaries.
149
+ * This implementation supports the discarding of precise information where necessary.
150
+ * (eg. to serialize a precisely typed record after construction), and its later reconstruction.
151
+ * (eg. a weakly typed deserialized record with a known schema can have its precise typing reestablished ).
152
+ */
153
153
def exerciseTypeable (res0 : Option [APAP ]) = {
154
154
import syntax .typeable ._
155
155
You can’t perform that action at this time.
0 commit comments