Skip to content

Commit 7facde4

Browse files
author
Roman Janusz
committed
minor
1 parent 81e3190 commit 7facde4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/GenCodec.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ boilerplate and does not require any usage of runtime reflection, which has seve
4646
* type safety - codec generation thoroughly validates types and issues compilation errors when something is wrong (e.g.
4747
when a codec instance is missing for some case class field type)
4848

49+
[Old Documentation](GenCodecOld.md) (with more internals)
50+
4951
## The `GenCodec` typeclass
5052

5153
The `GenCodec` typeclass itself is defined as:
@@ -68,7 +70,7 @@ However, `Input` and `Output` define a common denominator that must be supported
6870
Namely, they must all have a JSON-like structure, i.e.
6971

7072
* they must support writing and reading primitive types like `String`, `Boolean`, `Int`, `Double`, `BigInteger`,
71-
`BigDecimal`, `Array[Byte]`, `Timestamp`. \
73+
`BigDecimal`, `Array[Byte]`, `Timestamp`.
7274
Note that **not** all these types must have a native, unambiguous
7375
representation in the target format. For example, a `Timestamp` can be represented as an ISO string or a raw number of
7476
milliseconds.

0 commit comments

Comments
 (0)