aboutsummaryrefslogtreecommitdiff
path: root/shared/src/main/scala/annotations.scala
diff options
context:
space:
mode:
Diffstat (limited to 'shared/src/main/scala/annotations.scala')
-rw-r--r--shared/src/main/scala/annotations.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/src/main/scala/annotations.scala b/shared/src/main/scala/annotations.scala
index 9d35d16..1b7c62c 100644
--- a/shared/src/main/scala/annotations.scala
+++ b/shared/src/main/scala/annotations.scala
@@ -3,13 +3,13 @@ package spray.json
import scala.annotation.StaticAnnotation
/** An annotation that designates that a sealed trait is a generalized algebraic
- * datatype (GADT), and that a type field containing the serialized childrens'
- * types should be added to the final JSON objects.
+ * datatype (GADT), and that a field containing the serialized childrens' types
+ * should be added to the final JSON objects.
*
* Note that by default all sealed traits are treated as GADTs, with a type
* field called `type`. This annotation enables overriding the name of that
* field and is really only useful if a child itself has a field called `type`
- * that would result in a conflict.
+ * that would otherwise result in a conflict.
*
* Example:
* {{{