Skip to content

Commit fa9aada

Browse files
NickShadderjuanpedromoreno
authored andcommitted
Fix minor typos (#40)
1 parent 7e5aefc commit fa9aada

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/main/scala/shapeless/HListExercises.scala

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,13 @@ object HListExercises extends FlatSpec with Matchers with org.scalaexercises.def
143143
apap.toList should be(res0)
144144

145145
/** 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+
*/
153153
def exerciseTypeable(res0: Option[APAP]) = {
154154
import syntax.typeable._
155155

0 commit comments

Comments
 (0)