From 500d27200618aed84a3b29ec1c8a9da0c6fd6e31 Mon Sep 17 00:00:00 2001 From: David Runger Date: Fri, 23 Aug 2024 02:21:41 -0500 Subject: [PATCH] Remove extra whitespace from README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0d30100..c9d50bb 100644 --- a/README.md +++ b/README.md @@ -47,20 +47,20 @@ Include the Typelizer DSL in your serializers: ```ruby class ApplicationResource - include Alba::Resource + include Alba::Resource include Typelizer::DSL end class PostResource < ApplicationResource attributes :id, :title, :body - + has_one :author, serializer: AuthorResource end class AuthorResource < ApplicationResource # specify the model to infer types from (optional) typelize_from User - + attributes :id, :name end ```