From fdb5c1428083a8137bb29c09fcf3aa474d771a8d Mon Sep 17 00:00:00 2001 From: Regis Zanandrea Date: Thu, 27 Feb 2020 10:10:08 -0300 Subject: [PATCH] Update 06-Serialization.adoc --- 08-Lucid-ORM/06-Serialization.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08-Lucid-ORM/06-Serialization.adoc b/08-Lucid-ORM/06-Serialization.adoc index 558a63ed..59e6bce0 100644 --- a/08-Lucid-ORM/06-Serialization.adoc +++ b/08-Lucid-ORM/06-Serialization.adoc @@ -10,7 +10,7 @@ toc::[] *Serializers* provide clean abstractions to transform database results. -AdonisJs ships with the default link:https://github.com/adonisjs/adonis-lucid/blob/develop/src/Lucid/Serializers/Vanilla.js[Vanilla Serializer, window="_blank"], but you are free to create and use any serializer your application requires. +AdonisJs ships with the default link:https://github.com/adonisjs/adonis-lucid/blob/v6.1.3/src/Lucid/Serializers/Vanilla.js[Vanilla Serializer, window="_blank"], but you are free to create and use any serializer your application requires. A common serializer usage is to format data as per the link:http://jsonapi.org/[JSON:API, window="_blank"] spec.