From 7bc642cd5d844621e9bb08f9c0e8529960417c1b Mon Sep 17 00:00:00 2001 From: Srishti Jain Date: Thu, 11 Jul 2019 14:42:31 +0530 Subject: [PATCH] Update overview.md `TypeTags` -> `TypeTag`s --- _overviews/reflection/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/reflection/overview.md b/_overviews/reflection/overview.md index 22b267acfa..037207df3e 100644 --- a/_overviews/reflection/overview.md +++ b/_overviews/reflection/overview.md @@ -69,7 +69,7 @@ means that if you were to inspect the runtime type of some instance, that you might not have access to all type information that the Scala compiler has available at compile time. -`TypeTags` can be thought of as objects which carry along all type information +`TypeTag`s can be thought of as objects which carry along all type information available at compile time, to runtime. Though, it's important to note that `TypeTag`s are always generated by the compiler. This generation is triggered whenever an implicit parameter or context bound requiring a `TypeTag` is used.